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,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