diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MK02F12810/project_template/board.c')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/MK02F12810/project_template/board.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MK02F12810/project_template/board.c b/lib/chibios-contrib/ext/mcux-sdk/devices/MK02F12810/project_template/board.c new file mode 100644 index 000000000..daedb2d4e --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MK02F12810/project_template/board.c | |||
@@ -0,0 +1,23 @@ | |||
1 | /* | ||
2 | * Copyright 201, NXP | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * SPDX-License-Identifier: BSD-3-Clause | ||
6 | */ | ||
7 | |||
8 | /** | ||
9 | * @file board.c | ||
10 | * @brief Board initialization file. | ||
11 | */ | ||
12 | |||
13 | /* This is an empty template for board specific configuration.*/ | ||
14 | |||
15 | #include <stdint.h> | ||
16 | #include "board.h" | ||
17 | |||
18 | /** | ||
19 | * @brief Set up and initialize all required blocks and functions related to the board hardware. | ||
20 | */ | ||
21 | void BOARD_InitDebugConsole(void) { | ||
22 | /* The user initialization should be placed here */ | ||
23 | } | ||