diff options
Diffstat (limited to 'Smol Watch Project/My Project/atmel_start.h')
-rw-r--r-- | Smol Watch Project/My Project/atmel_start.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Smol Watch Project/My Project/atmel_start.h b/Smol Watch Project/My Project/atmel_start.h new file mode 100644 index 00000000..01435cc9 --- /dev/null +++ b/Smol Watch Project/My Project/atmel_start.h @@ -0,0 +1,19 @@ +#ifndef ATMEL_START_H_INCLUDED +#define ATMEL_START_H_INCLUDED + +#ifdef __cplusplus +extern "C" { +#endif + +#include "driver_init.h" +#include "sleep_manager_main.h" + +/** + * Initializes MCU, drivers and middleware in the project + **/ +void atmel_start_init(void); + +#ifdef __cplusplus +} +#endif +#endif |