aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c')
-rw-r--r--lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c b/lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c
new file mode 100644
index 000000000..437f404ff
--- /dev/null
+++ b/lib/chibios-contrib/ext/mcux-sdk/devices/LPC55S14/project_template/board.c
@@ -0,0 +1,24 @@
1/*
2 * Copyright (c) 201, NXP Semiconductor, Inc.
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 */
21void BOARD_InitDebugConsole(void)
22{
23 /* The user initialization should be placed here */
24}