diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MM1/project_template/pin_mux.h')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MM1/project_template/pin_mux.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MM1/project_template/pin_mux.h b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MM1/project_template/pin_mux.h new file mode 100644 index 000000000..1d906205a --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MM1/project_template/pin_mux.h | |||
@@ -0,0 +1,56 @@ | |||
1 | /* | ||
2 | * Copyright 2018 NXP | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * SPDX-License-Identifier: BSD-3-Clause | ||
6 | * | ||
7 | */ | ||
8 | |||
9 | |||
10 | #ifndef _PIN_MUX_H_ | ||
11 | #define _PIN_MUX_H_ | ||
12 | |||
13 | #include "board.h" | ||
14 | |||
15 | /*********************************************************************************************************************** | ||
16 | * Definitions | ||
17 | **********************************************************************************************************************/ | ||
18 | |||
19 | /*! | ||
20 | * @addtogroup pin_mux | ||
21 | * @{ | ||
22 | */ | ||
23 | |||
24 | /*********************************************************************************************************************** | ||
25 | * API | ||
26 | **********************************************************************************************************************/ | ||
27 | |||
28 | #if defined(__cplusplus) | ||
29 | extern "C" { | ||
30 | #endif | ||
31 | |||
32 | |||
33 | /*! | ||
34 | * @brief Calls initialization functions. | ||
35 | * | ||
36 | */ | ||
37 | void BOARD_InitBootPins(void); | ||
38 | |||
39 | /*! | ||
40 | * @brief Configures pin routing and optionally pin electrical features. | ||
41 | * | ||
42 | */ | ||
43 | void BOARD_InitPins(void); /*!< Function assigned for the core: Cortex-M4[m4] */ | ||
44 | |||
45 | #if defined(__cplusplus) | ||
46 | } | ||
47 | #endif | ||
48 | |||
49 | /*! | ||
50 | * @} | ||
51 | */ | ||
52 | #endif /* _PIN_MUX_H_ */ | ||
53 | |||
54 | /*********************************************************************************************************************** | ||
55 | * EOF | ||
56 | **********************************************************************************************************************/ | ||