21 lines
445 B
C
21 lines
445 B
C
/**
|
|
* \file
|
|
*
|
|
* \brief User board initialization template
|
|
*
|
|
*/
|
|
/*
|
|
* Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>
|
|
*/
|
|
|
|
#include "board.h"
|
|
#include "conf_board.h"
|
|
|
|
void board_init(void)
|
|
{
|
|
/* This function is meant to contain board-specific initialization code
|
|
* for, e.g., the I/O pins. The initialization can rely on application-
|
|
* specific board configuration, found in conf_board.h.
|
|
*/
|
|
}
|