From efd1e8a1238af8eea53afa0d5acac071d73d1ea5 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 25 Apr 2021 22:43:47 -0400 Subject: WIP simple C-based library for hacking on the watch --- Smol Watch Project/My Project/atmel_start.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Smol Watch Project/My Project/atmel_start.h (limited to 'Smol Watch Project/My Project/atmel_start.h') 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 -- cgit v1.2.3