MCUXpresso_MIMXRT1052xxxxB/boards/evkbimxrt1050/demo_apps/hello_world_swo/pin_mux.h
Yilin Sun c2668b7ca0
Update SDK to v2.13.0
Signed-off-by: Yilin Sun <imi415@imi.moe>
2023-01-26 09:35:56 +08:00

87 lines
3.3 KiB
C

/*
* Copyright 2019-2022 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/***********************************************************************************************************************
* 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);
/* GPIO_B0_13 (coord D10), LCDIF_D9/BT_CFG[9] */
/* Routed pin properties */
#define BOARD_LCDIF_D9_PERIPHERAL ARM /*!< Peripheral name */
#define BOARD_LCDIF_D9_SIGNAL arm_trace_swo /*!< Signal name */
/* WAKEUP (coord L6), SD_PWREN */
/* Routed pin properties */
#define BOARD_SD_PWREN_PERIPHERAL GPIO5 /*!< Peripheral name */
#define BOARD_SD_PWREN_SIGNAL gpio_io /*!< Signal name */
#define BOARD_SD_PWREN_CHANNEL 0U /*!< Signal channel */
/* Symbols to be used with GPIO driver */
#define BOARD_SD_PWREN_GPIO GPIO5 /*!< GPIO peripheral base pointer */
#define BOARD_SD_PWREN_GPIO_PIN 0U /*!< GPIO pin number */
#define BOARD_SD_PWREN_GPIO_PIN_MASK (1U << 0U) /*!< GPIO pin mask */
#define BOARD_SD_PWREN_PORT GPIO5 /*!< PORT peripheral base pointer */
#define BOARD_SD_PWREN_PIN 0U /*!< PORT pin number */
#define BOARD_SD_PWREN_PIN_MASK (1U << 0U) /*!< PORT pin mask */
/*!
* @brief Configures pin routing and optionally pin electrical features.
*
*/
void BOARD_InitPins(void);
#if defined(__cplusplus)
}
#endif
/*!
* @}
*/
#endif /* _PIN_MUX_H_ */
/***********************************************************************************************************************
* EOF
**********************************************************************************************************************/