summaryrefslogtreecommitdiffstats
path: root/Smol Watch Project/My Project/atmel_start.h
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-04-25 22:43:47 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-04-25 22:43:47 -0400
commitefd1e8a1238af8eea53afa0d5acac071d73d1ea5 (patch)
treeb64949c782f61f6a759a70f22fe32342c0dc0f27 /Smol Watch Project/My Project/atmel_start.h
parent9dda14e554137e0b0ca02b61158b5580d0728332 (diff)
downloadSensor-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.h19
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