1 /**
2  * \file
3  *
4  * \brief User board initialization template
5  *
6  */
7 /*
8  * Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>
9  */
10 
11 #include <asf.h>
12 #include <board.h>
13 #include <conf_board.h>
14 
board_init(void)15 void board_init(void)
16 {
17 	/* This function is meant to contain board-specific initialization code
18 	 * for, e.g., the I/O pins. The initialization can rely on application-
19 	 * specific board configuration, found in conf_board.h.
20 	 */
21 }
22