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