summaryrefslogtreecommitdiffstats
path: root/Smol Watch Project/My Project/atmel_start.c
blob: b54b7d2a2f3ca9a1dc147a19ba42c87c2f8d7fba (plain)
1
2
3
4
5
6
7
8
9
10
#include <atmel_start.h>

/**
 * Initializes MCU, drivers and middleware in the project
 **/
void atmel_start_init(void)
{
	system_init();
	sleep_manager_init();
}