blob: fc6016aa865af1175cc02c90df13807fd6cf14d6 [file] [log] [blame]
Kévin Redon69b92d92019-01-24 16:39:20 +01001#include <atmel_start.h>
2
3/**
4 * Initializes MCU, drivers and middleware in the project
5 **/
6void atmel_start_init(void)
7{
8 system_init();
9 usb_init();
Harald Welte361ed202019-02-24 21:15:39 +010010 stdio_redirect_init();
Kévin Redon69b92d92019-01-24 16:39:20 +010011}