You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.8 KiB
87 lines
3.8 KiB
/***********************************************************************************************************************
|
|
* 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.
|
|
**********************************************************************************************************************/
|
|
|
|
/* clang-format off */
|
|
/*
|
|
* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
|
!!GlobalInfo
|
|
product: Pins v12.0
|
|
processor: MK22FX512xxx12
|
|
package_id: MK22FX512VLK12
|
|
mcu_data: ksdk2_0
|
|
processor_version: 12.0.0
|
|
pin_labels:
|
|
- {pin_num: '73', pin_signal: PTD0/LLWU_P12/SPI0_PCS0/UART2_RTS_b/FTM3_CH0/FBa_ALE/FBa_CS1_b/FBa_TS_b, label: LED_RED_L, identifier: LED_RED_L}
|
|
- {pin_num: '33', pin_signal: CMP2_IN1/PTA13/LLWU_P4/CAN0_RX/FTM1_CH1/I2C2_SDA/I2S0_TX_FS/FTM1_QD_PHB, label: LED_RED_R, identifier: LED_RED_R}
|
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS ***********
|
|
*/
|
|
/* clang-format on */
|
|
|
|
#include "fsl_common.h"
|
|
#include "fsl_port.h"
|
|
#include "fsl_gpio.h"
|
|
#include "pin_mux.h"
|
|
|
|
/* FUNCTION ************************************************************************************************************
|
|
*
|
|
* Function Name : BOARD_InitBootPins
|
|
* Description : Calls initialization functions.
|
|
*
|
|
* END ****************************************************************************************************************/
|
|
void BOARD_InitBootPins(void)
|
|
{
|
|
BOARD_InitPins();
|
|
}
|
|
|
|
/* clang-format off */
|
|
/*
|
|
* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
|
BOARD_InitPins:
|
|
- options: {callFromInitBoot: 'true', coreID: core0, enableClock: 'true'}
|
|
- pin_list:
|
|
- {pin_num: '73', peripheral: GPIOD, signal: 'GPIO, 0', pin_signal: PTD0/LLWU_P12/SPI0_PCS0/UART2_RTS_b/FTM3_CH0/FBa_ALE/FBa_CS1_b/FBa_TS_b, direction: OUTPUT,
|
|
gpio_init_state: 'true'}
|
|
- {pin_num: '33', peripheral: GPIOA, signal: 'GPIO, 13', pin_signal: CMP2_IN1/PTA13/LLWU_P4/CAN0_RX/FTM1_CH1/I2C2_SDA/I2S0_TX_FS/FTM1_QD_PHB, direction: OUTPUT,
|
|
gpio_init_state: 'true'}
|
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS ***********
|
|
*/
|
|
/* clang-format on */
|
|
|
|
/* FUNCTION ************************************************************************************************************
|
|
*
|
|
* Function Name : BOARD_InitPins
|
|
* Description :
|
|
*
|
|
* END ****************************************************************************************************************/
|
|
void BOARD_InitPins(void)
|
|
{
|
|
/* Port A Clock Gate Control: Clock enabled */
|
|
CLOCK_EnableClock(kCLOCK_PortA);
|
|
/* Port D Clock Gate Control: Clock enabled */
|
|
CLOCK_EnableClock(kCLOCK_PortD);
|
|
|
|
gpio_pin_config_t LED_RED_R_config = {
|
|
.pinDirection = kGPIO_DigitalOutput,
|
|
.outputLogic = 1U
|
|
};
|
|
/* Initialize GPIO functionality on pin PTA13 (pin 33) */
|
|
GPIO_PinInit(BOARD_INITPINS_LED_RED_R_GPIO, BOARD_INITPINS_LED_RED_R_PIN, &LED_RED_R_config);
|
|
|
|
gpio_pin_config_t LED_RED_L_config = {
|
|
.pinDirection = kGPIO_DigitalOutput,
|
|
.outputLogic = 1U
|
|
};
|
|
/* Initialize GPIO functionality on pin PTD0 (pin 73) */
|
|
GPIO_PinInit(BOARD_INITPINS_LED_RED_L_GPIO, BOARD_INITPINS_LED_RED_L_PIN, &LED_RED_L_config);
|
|
|
|
/* PORTA13 (pin 33) is configured as PTA13 */
|
|
PORT_SetPinMux(BOARD_INITPINS_LED_RED_R_PORT, BOARD_INITPINS_LED_RED_R_PIN, kPORT_MuxAsGpio);
|
|
|
|
/* PORTD0 (pin 73) is configured as PTD0 */
|
|
PORT_SetPinMux(BOARD_INITPINS_LED_RED_L_PORT, BOARD_INITPINS_LED_RED_L_PIN, kPORT_MuxAsGpio);
|
|
}
|
|
/***********************************************************************************************************************
|
|
* EOF
|
|
**********************************************************************************************************************/
|
|
|