aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h')
-rw-r--r--lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h
new file mode 100644
index 000000000..018d54f57
--- /dev/null
+++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MQ5/project_template/pin_mux.h
@@ -0,0 +1,54 @@
1/*
2 * Copyright 2018 NXP.
3 * All rights reserved.
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)
27extern "C" {
28#endif
29
30
31/*!
32 * @brief Calls initialization functions.
33 *
34 */
35void BOARD_InitBootPins(void);
36
37/*!
38 * @brief Configures pin routing and optionally pin electrical features.
39 *
40 */
41void BOARD_InitPins(void); /*!< Function assigned for the core: Cortex-A53[a53_0] */
42
43#if defined(__cplusplus)
44}
45#endif
46
47/*!
48 * @}
49 */
50#endif /* _PIN_MUX_H_ */
51
52/***********************************************************************************************************************
53 * EOF
54 **********************************************************************************************************************/