90 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /***********************************************************************************************************************
 | |
|  * This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
 | |
|  * will be overwritten if the respective MCUXpresso Config Tools is used to update this file.
 | |
|  **********************************************************************************************************************/
 | |
| 
 | |
| #ifndef _PIN_MUX_H_
 | |
| #define _PIN_MUX_H_
 | |
| 
 | |
| /***********************************************************************************************************************
 | |
|  * Definitions
 | |
|  **********************************************************************************************************************/
 | |
| 
 | |
| /*! @brief Direction type  */
 | |
| typedef enum _pin_mux_direction
 | |
| {
 | |
|   kPIN_MUX_DirectionInput = 0U,         /* Input direction */
 | |
|   kPIN_MUX_DirectionOutput = 1U,        /* Output direction */
 | |
|   kPIN_MUX_DirectionInputOrOutput = 2U  /* Input or output direction */
 | |
| } pin_mux_direction_t;
 | |
| 
 | |
| /*!
 | |
|  * @addtogroup pin_mux
 | |
|  * @{
 | |
|  */
 | |
| 
 | |
| /***********************************************************************************************************************
 | |
|  * API
 | |
|  **********************************************************************************************************************/
 | |
| 
 | |
| #if defined(__cplusplus)
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /*!
 | |
|  * @brief Calls initialization functions.
 | |
|  *
 | |
|  */
 | |
| void BOARD_InitBootPins(void);
 | |
| 
 | |
| #define BOARD_INITPINS_IOMUXC_GPR_GPR26_GPIO_SEL_MASK 0x0820U /*!< Select GPIO1 or GPIO2: affected bits mask */
 | |
| 
 | |
| /* GPIO_SD_05 (number 70), USER_BUTTON */
 | |
| /* Routed pin properties */
 | |
| #define BOARD_INITPINS_USER_BUTTON_PERIPHERAL                              GPIO2   /*!< Peripheral name */
 | |
| #define BOARD_INITPINS_USER_BUTTON_SIGNAL                                gpio_io   /*!< Signal name */
 | |
| #define BOARD_INITPINS_USER_BUTTON_CHANNEL                                    5U   /*!< Signal channel */
 | |
| 
 | |
| /* Symbols to be used with GPIO driver */
 | |
| #define BOARD_INITPINS_USER_BUTTON_GPIO                                    GPIO2   /*!< GPIO peripheral base pointer */
 | |
| #define BOARD_INITPINS_USER_BUTTON_GPIO_PIN                                   5U   /*!< GPIO pin number */
 | |
| #define BOARD_INITPINS_USER_BUTTON_GPIO_PIN_MASK                      (1U << 5U)   /*!< GPIO pin mask */
 | |
| #define BOARD_INITPINS_USER_BUTTON_PORT                                    GPIO2   /*!< PORT peripheral base pointer */
 | |
| #define BOARD_INITPINS_USER_BUTTON_PIN                                        5U   /*!< PORT pin number */
 | |
| #define BOARD_INITPINS_USER_BUTTON_PIN_MASK                           (1U << 5U)   /*!< PORT pin mask */
 | |
| 
 | |
| /* GPIO_11 (number 1), GPIO_11 */
 | |
| /* Routed pin properties */
 | |
| #define BOARD_INITPINS_USER_LED_PERIPHERAL                                 GPIO1   /*!< Peripheral name */
 | |
| #define BOARD_INITPINS_USER_LED_SIGNAL                                gpiomux_io   /*!< Signal name */
 | |
| #define BOARD_INITPINS_USER_LED_CHANNEL                                      11U   /*!< Signal channel */
 | |
| 
 | |
| /* GPIO_09 (number 3), LPUART1_RXD/J56[2] */
 | |
| /* Routed pin properties */
 | |
| #define BOARD_INITPINS_UART1_RXD_PERIPHERAL                              LPUART1   /*!< Peripheral name */
 | |
| #define BOARD_INITPINS_UART1_RXD_SIGNAL                                      RXD   /*!< Signal name */
 | |
| 
 | |
| /* GPIO_10 (number 2), LPUART1_TXD/J56[4] */
 | |
| /* Routed pin properties */
 | |
| #define BOARD_INITPINS_UART1_TXD_PERIPHERAL                              LPUART1   /*!< Peripheral name */
 | |
| #define BOARD_INITPINS_UART1_TXD_SIGNAL                                      TXD   /*!< Signal name */
 | |
| 
 | |
| /*!
 | |
|  * @brief Configures pin routing and optionally pin electrical features.
 | |
|  *
 | |
|  */
 | |
| void BOARD_InitPins(void);
 | |
| 
 | |
| #if defined(__cplusplus)
 | |
| }
 | |
| #endif
 | |
| 
 | |
| /*!
 | |
|  * @}
 | |
|  */
 | |
| #endif /* _PIN_MUX_H_ */
 | |
| 
 | |
| /***********************************************************************************************************************
 | |
|  * EOF
 | |
|  **********************************************************************************************************************/
 | 
