diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-04-25 22:43:47 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-04-25 22:43:47 -0400 |
commit | efd1e8a1238af8eea53afa0d5acac071d73d1ea5 (patch) | |
tree | b64949c782f61f6a759a70f22fe32342c0dc0f27 /Smol Watch Project/My Project/atmel_start.h | |
parent | 9dda14e554137e0b0ca02b61158b5580d0728332 (diff) | |
download | Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.tar.gz Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.tar.bz2 Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.zip |
WIP simple C-based library for hacking on the watch
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 |