diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN1/project_template/board.c')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN1/project_template/board.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN1/project_template/board.c b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN1/project_template/board.c new file mode 100644 index 000000000..30bda70e0 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN1/project_template/board.c | |||
@@ -0,0 +1,24 @@ | |||
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 | { | ||
23 | /* The user initialization should be placed here */ | ||
24 | } | ||