aboutsummaryrefslogtreecommitdiffstats
path: root/sysmoOCTSIM/atmel_start.c
blob: fc6016aa865af1175cc02c90df13807fd6cf14d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <atmel_start.h>

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