blob: 118cdef04fe2daa09aa2c953c2c43e4d2d2dffd0 (
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
25
26
27
28
|
/*
* Copyright 2017, NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
!!GlobalInfo
product: Peripherals v1.0
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
/**
* @file peripherals.c
* @brief Peripherals initialization file.
*/
/* This is an empty template for board specific configuration.*/
#include "peripherals.h"
/**
* @brief Set up and initialize all required blocks and functions related to the peripherals hardware.
*/
void BOARD_InitBootPeripherals(void)
{
/* The user initialization should be placed here */
}
|