diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/boards/frdmkl27z/project_template/peripherals.c')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/boards/frdmkl27z/project_template/peripherals.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/boards/frdmkl27z/project_template/peripherals.c b/lib/chibios-contrib/ext/mcux-sdk/boards/frdmkl27z/project_template/peripherals.c new file mode 100644 index 000000000..76567b9d6 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/boards/frdmkl27z/project_template/peripherals.c | |||
@@ -0,0 +1,54 @@ | |||
1 | /* | ||
2 | * Copyright 2018 NXP. | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * SPDX-License-Identifier: BSD-3-Clause | ||
6 | */ | ||
7 | |||
8 | /*********************************************************************************************************************** | ||
9 | * This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file | ||
10 | * will be overwritten if the respective MCUXpresso Config Tools is used to update this file. | ||
11 | **********************************************************************************************************************/ | ||
12 | |||
13 | /* clang-format off */ | ||
14 | /* TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* | ||
15 | !!GlobalInfo | ||
16 | product: Peripherals v4.1 | ||
17 | processor: MKL27Z64xxx4 | ||
18 | package_id: MKL27Z64VLH4 | ||
19 | mcu_data: ksdk2_0 | ||
20 | processor_version: 4.0.0 | ||
21 | board: FRDM-KL27Z | ||
22 | functionalGroups: | ||
23 | - name: BOARD_InitPeripherals | ||
24 | called_from_default_init: true | ||
25 | selectedCore: core0 | ||
26 | * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/ | ||
27 | |||
28 | /* TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* | ||
29 | component: | ||
30 | - type: 'system' | ||
31 | - type_id: 'system' | ||
32 | - global_system_definitions: [] | ||
33 | * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/ | ||
34 | /* clang-format on */ | ||
35 | |||
36 | /*********************************************************************************************************************** | ||
37 | * Included files | ||
38 | **********************************************************************************************************************/ | ||
39 | #include "peripherals.h" | ||
40 | |||
41 | /*********************************************************************************************************************** | ||
42 | * Initialization functions | ||
43 | **********************************************************************************************************************/ | ||
44 | void BOARD_InitPeripherals(void) | ||
45 | { | ||
46 | } | ||
47 | |||
48 | /*********************************************************************************************************************** | ||
49 | * BOARD_InitBootPeripherals function | ||
50 | **********************************************************************************************************************/ | ||
51 | void BOARD_InitBootPeripherals(void) | ||
52 | { | ||
53 | BOARD_InitPeripherals(); | ||
54 | } | ||