Conquering the STM32F4 on the discovery board step-by-step. Commit history is tutorialesque, but not clean of course.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
281 B

/*
* cppmain.hh
*
* Created on: Jul 4, 2023
* Author: heck
*/
#ifndef INC_CPPMAIN_H
#define INC_CPPMAIN_H
#ifdef __cplusplus
extern "C" {
#endif
void irq1();
void timer_cb();
void cppmain(void);
#ifdef __cplusplus
};
#endif
#endif /* INC_CPPMAIN_H */