1 /* This is a template file for board configuration created by MCUXpresso Project Generator. Enjoy! */
2 
3 #ifndef _BOARD_H_
4 #define _BOARD_H_
5 
6 /*******************************************************************************
7  * Definitions
8  ******************************************************************************/
9 #include <stdint.h>
10 #include "samd21.h"
11 #include "system_samd21.h"
12 #include "core_cm0plus.h"              /* Core Peripheral Access Layer */
13 
14 /* The board name */
15 #define BOARD_NAME "###-not-specified-###"
16 
17 #define CHIP_SRAM_END   (0x20000000 + 32*1024)
18 
19 /*******************************************************************************
20  * API
21  ******************************************************************************/
22 
23 #if defined(__cplusplus)
24 extern "C" {
25 #endif /* __cplusplus */
26 
27 /*!
28  * @brief initialize debug console to enable printf for this demo/example
29  */
30 void rt_board_init(void);
31 
32 #if defined(__cplusplus)
33 }
34 #endif /* __cplusplus */
35 
36 #endif /* _BOARD_H_ */
37