ISSDK  1.8
IoT Sensing Software Development Kit
pin_mux.h
Go to the documentation of this file.
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)
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(core 1)[m4_1] */
35 
36 /*!
37  * @brief Configures pin routing and optionally pin electrical features.
38  *
39  */
40 void LPI2C2_InitPins(void); /*!< Function assigned for the core: Cortex-M4F(core 1)[m4_1] */
41 
42 /*!
43  * @brief Configures pin routing and optionally pin electrical features.
44  *
45  */
46 void LPI2C2_DeinitPins(void); /*!< Function assigned for the core: Cortex-M4F(core 1)[m4_1] */
47 
48 #if defined(__cplusplus)
49 }
50 #endif
51 
52 /*!
53  * @}
54  */
55 #endif /* _PIN_MUX_H_ */
56 
57 /*******************************************************************************
58  * EOF
59  ******************************************************************************/
void LPI2C2_InitPins(void)
Configures pin routing and optionally pin electrical features.
Definition: pin_mux.c:171
void LPI2C2_DeinitPins(void)
Configures pin routing and optionally pin electrical features.
Definition: pin_mux.c:189
void BOARD_InitPins(void)
Configures pin routing and optionally pin electrical features.
Definition: pin_mux.c:47