blob: 437f404ff2b7ba3708bbba82f2712cfb6491ebf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 201, NXP Semiconductor, Inc.
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/**
* @file board.c
* @brief Board initialization file.
*/
/* This is an empty template for board specific configuration.*/
#include <stdint.h>
#include "board.h"
/**
* @brief Set up and initialize all required blocks and functions related to the board hardware.
*/
void BOARD_InitDebugConsole(void)
{
/* The user initialization should be placed here */
}
|