From 97819b8a3178ccc3790b7f1b36d7ed235a1863ff Mon Sep 17 00:00:00 2001 From: Christian Mauderer Date: Thu, 4 May 2023 14:59:32 +0200 Subject: bsps/imxrt: Move board specific files Move the files that are board specific and not specific to the chip family into a separate folder. --- bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c | 43 ----------------------- 1 file changed, 43 deletions(-) delete mode 100644 bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c (limited to 'bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c') diff --git a/bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c b/bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c deleted file mode 100644 index 2023630052..0000000000 --- a/bsps/arm/imxrt/nxp/boards/evkbimxrt1050/pin_mux.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright 2018 NXP. - * All rights reserved. - * - * SPDX-License-Identifier: BSD-3-Clause - */ - -#include "fsl_common.h" -#include "fsl_iomuxc.h" -#include -#include - -BSP_START_TEXT_SECTION -void BOARD_InitDEBUG_UARTPins(void) { - CLOCK_EnableClock(kCLOCK_Iomuxc); /* iomuxc clock (iomuxc_clk_enable): 0x03u */ - - IOMUXC_SetPinMux( - IOMUXC_GPIO_AD_B0_12_LPUART1_TXD, /* GPIO_AD_B0_12 is configured as LPUART1_TX */ - 0U); /* Software Input On Field: Input Path is determined by functionality */ - IOMUXC_SetPinMux( - IOMUXC_GPIO_AD_B0_13_LPUART1_RXD, /* GPIO_AD_B0_13 is configured as LPUART1_RX */ - 0U); /* Software Input On Field: Input Path is determined by functionality */ - IOMUXC_SetPinConfig( - IOMUXC_GPIO_AD_B0_12_LPUART1_TXD, /* GPIO_AD_B0_12 PAD functional properties : */ - 0x10B0u); /* Slew Rate Field: Slow Slew Rate - Drive Strength Field: R0/6 - Speed Field: medium(100MHz) - Open Drain Enable Field: Open Drain Disabled - Pull / Keep Enable Field: Pull/Keeper Enabled - Pull / Keep Select Field: Keeper - Pull Up / Down Config. Field: 100K Ohm Pull Down - Hyst. Enable Field: Hysteresis Disabled */ - IOMUXC_SetPinConfig( - IOMUXC_GPIO_AD_B0_13_LPUART1_RXD, /* GPIO_AD_B0_13 PAD functional properties : */ - 0x10B0u); /* Slew Rate Field: Slow Slew Rate - Drive Strength Field: R0/6 - Speed Field: medium(100MHz) - Open Drain Enable Field: Open Drain Disabled - Pull / Keep Enable Field: Pull/Keeper Enabled - Pull / Keep Select Field: Keeper - Pull Up / Down Config. Field: 100K Ohm Pull Down - Hyst. Enable Field: Hysteresis Disabled */ -} -- cgit v1.2.3