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 */
BOARD_InitDebugConsole(void)21 void BOARD_InitDebugConsole(void)
22 {
23 /* The user initialization should be placed here */
24 }
25