diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MK27FA15/project_template/board.h')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/MK27FA15/project_template/board.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MK27FA15/project_template/board.h b/lib/chibios-contrib/ext/mcux-sdk/devices/MK27FA15/project_template/board.h new file mode 100644 index 000000000..bbcf0e417 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MK27FA15/project_template/board.h | |||
@@ -0,0 +1,38 @@ | |||
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 | |||
38 | |||