1 /*
2  * Copyright 2017, NXP
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 /**
9  * @file    board.h
10  * @brief   Board initialization header file.
11  */
12 
13 /* This is an empty template for board specific configuration.*/
14 
15 #ifndef _BOARD_H_
16 #define _BOARD_H_
17 
18 /**
19  * @brief	The board name
20  */
21 #define BOARD_NAME "board"
22 
23 #if defined(__cplusplus)
24 extern "C" {
25 #endif /* __cplusplus */
26 
27 /**
28  * @brief 	Initialize board specific settings.
29  */
30 void BOARD_InitDebugConsole(void);
31 
32 #if defined(__cplusplus)
33 }
34 #endif /* __cplusplus */
35 
36 #endif /* _BOARD_H_ */
37