WIP simple C-based library for hacking on the watch

This commit is contained in:
Joey Castillo
2021-04-25 22:43:47 -04:00
parent 9dda14e554
commit efd1e8a123
273 changed files with 142085 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <atmel_start.h>
/**
* Initializes MCU, drivers and middleware in the project
**/
void atmel_start_init(void)
{
system_init();
sleep_manager_init();
}