diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/LPC5528/project_template/peripherals.c')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/LPC5528/project_template/peripherals.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/LPC5528/project_template/peripherals.c b/lib/chibios-contrib/ext/mcux-sdk/devices/LPC5528/project_template/peripherals.c new file mode 100644 index 000000000..364ec70d7 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/LPC5528/project_template/peripherals.c | |||
@@ -0,0 +1,28 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2017, NXP Semiconductor, Inc. | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * SPDX-License-Identifier: BSD-3-Clause | ||
6 | */ | ||
7 | |||
8 | /* TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* | ||
9 | !!GlobalInfo | ||
10 | product: Peripherals v1.0 | ||
11 | * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/ | ||
12 | |||
13 | /** | ||
14 | * @file peripherals.c | ||
15 | * @brief Peripherals initialization file. | ||
16 | */ | ||
17 | |||
18 | /* This is an empty template for board specific configuration.*/ | ||
19 | |||
20 | #include "peripherals.h" | ||
21 | |||
22 | /** | ||
23 | * @brief Set up and initialize all required blocks and functions related to the peripherals hardware. | ||
24 | */ | ||
25 | void BOARD_InitBootPeripherals(void) | ||
26 | { | ||
27 | /* The user initialization should be placed here */ | ||
28 | } | ||