summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-04-28 22:34:56 +0700
committerhathach <[email protected]>2021-04-28 22:34:56 +0700
commit8a9f41278831ec2d97953df95f5685a7145ec1dc (patch)
tree5e9645b93d818aa24da99b01543661b3f3b502d1
parent71a1f57ccd24b61e4a35b6dcaf5df8efc76c586f (diff)
fix lpc54 button
-rw-r--r--hw/bsp/lpc54/boards/lpcxpresso54114/board.mk2
-rw-r--r--hw/bsp/lpc54/family.c8
-rw-r--r--hw/bsp/lpc54/family.mk3
3 files changed, 6 insertions, 7 deletions
diff --git a/hw/bsp/lpc54/boards/lpcxpresso54114/board.mk b/hw/bsp/lpc54/boards/lpcxpresso54114/board.mk
index 93e414713..6e33d8cbe 100644
--- a/hw/bsp/lpc54/boards/lpcxpresso54114/board.mk
+++ b/hw/bsp/lpc54/boards/lpcxpresso54114/board.mk
@@ -4,6 +4,8 @@ MCU_CORE = LPC54114_cm4
CFLAGS += -DCPU_LPC54114J256BD64_cm4
LD_FILE = $(MCU_DIR)/gcc/LPC54114J256_cm4_flash.ld
+LIBS += $(TOP)/$(MCU_DIR)/gcc/libpower_cm4_hardabi.a
+
JLINK_DEVICE = LPC54114J256_M4
PYOCD_TARGET = LPC54114
diff --git a/hw/bsp/lpc54/family.c b/hw/bsp/lpc54/family.c
index af352b9eb..b1e2ca356 100644
--- a/hw/bsp/lpc54/family.c
+++ b/hw/bsp/lpc54/family.c
@@ -100,9 +100,6 @@ void board_init(void)
// Enable IOCON clock
CLOCK_EnableClock(kCLOCK_Iocon);
- // Enable GPIO0 clock
- CLOCK_EnableClock(kCLOCK_Gpio0);
-
// Init 96 MHz clock
BootClockFROHF96M();
@@ -114,16 +111,19 @@ void board_init(void)
NVIC_SetPriority(USB0_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );
#endif
- // Init all GPIO ports
+ // Init all GPIO ports 54114 only has 2 ports.
GPIO_PortInit(GPIO, 0);
GPIO_PortInit(GPIO, 1);
+ //GPIO_PortInit(GPIO, 2);
// LED
+ IOCON_PinMuxSet(IOCON, LED_PORT, LED_PIN, IOCON_PIO_DIG_FUNC0_EN);
gpio_pin_config_t const led_config = { kGPIO_DigitalOutput, 0};
GPIO_PinInit(GPIO, LED_PORT, LED_PIN, &led_config);
board_led_write(true);
// Button
+ IOCON_PinMuxSet(IOCON, BUTTON_PORT, BUTTON_PIN, IOCON_PIO_DIG_FUNC0_EN | IOCON_PIO_MODE_PULLUP);
gpio_pin_config_t const button_config = { kGPIO_DigitalInput, 0};
GPIO_PinInit(GPIO, BUTTON_PORT, BUTTON_PIN, &button_config);
diff --git a/hw/bsp/lpc54/family.mk b/hw/bsp/lpc54/family.mk
index 8e501f59a..26fbfc54c 100644
--- a/hw/bsp/lpc54/family.mk
+++ b/hw/bsp/lpc54/family.mk
@@ -11,7 +11,6 @@ CFLAGS += \
-mfloat-abi=hard \
-mfpu=fpv4-sp-d16 \
-DCFG_TUSB_MCU=OPT_MCU_LPC54XXX \
- -DCFG_TUSB_MEM_SECTION='__attribute__((section(".data")))' \
-DCFG_TUSB_MEM_ALIGN='__attribute__((aligned(64)))'
# mcu driver cause following warnings
@@ -41,7 +40,5 @@ INC += \
SRC_S += $(MCU_DIR)/gcc/startup_$(MCU_CORE).S
-LIBS += $(TOP)/$(MCU_DIR)/gcc/libpower_cm4_hardabi.a
-
# For freeRTOS port source
FREERTOS_PORT = ARM_CM4F