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
326 B
25 lines
326 B
/*
|
|
* cppmain.hh
|
|
*
|
|
* Created on: Jul 4, 2023
|
|
* Author: heck
|
|
*/
|
|
|
|
#ifndef INC_CPPMAIN_H
|
|
#define INC_CPPMAIN_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void heck_irq1();
|
|
void heck_timer_cb();
|
|
void heck_cppmain(void);
|
|
void heck_error_handler();
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
|
|
#endif /* INC_CPPMAIN_H */
|
|
|