From af43ce4f467a56774cadc49bac169b248a50912b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 5 Jun 2016 15:01:16 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 23 ++++++++++++++++++++--- arch/arm/src/lpc43xx/lpc43_gpioint.c | 4 ++-- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0df50e18fc..36041eb279 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11884,6 +11884,23 @@ in the OS and is simply a wrapper around the MDIOC_BULKERASE IOCTL command. It used to be called (only) from apps/system/flash_eraseall, but that has been removed because it - violated the OS/applicatin interface -- by calling flash_eraseall(). - The old code can be found in the Obsoleted' repository (2016-06-03). - + violated the OS/application interface -- by calling flash_eraseall(). + The old code can be found in the Obsoleted' repository (and a revised + version can be found at apps/fsutils/flash_eraseall) (2016-06-03). + * arch/arm/src/lpc43xx: Fix errors in GPIO interrupt logic. From v01d + (phreakuencies) (2016-06-04) + * arch/arm/src/kl and lpc11xx: rename xyz_lowputc to up_putc. Remove + all references to up_lowputc, everywhere (2016-06-04). + * configs/stm32f103-minimum: Add minnsh configuration. From Alan + Carvalho de Assis (2016-06-04). + * arch/arm/src/stm32: Add the up_getc() function to STM32 in order to + support the minnsh configuration. From Alan Carvalho de Assis + (2016-06-04). + * arch/arm/src/stm32: STM32 Timer Driver: Change calculation of per- + timer pre-scaler value. Add support for all timers (2016-6-03) + * drivers/lcd: Correct conditional compilation in ST7565 driver. From + Pierre-noel Bouteville (2016-6-03) + * arch/arm/src/stm32: Correct conditional compilation in STM32 timer + capture logic. From Pierre-noel Bouteville (2016-6-03) + * arch/arm/src/efm32: Fix EFM32 FLASH conditional compilation. From + Pierre-noel Bouteville (2016-6-03) diff --git a/arch/arm/src/lpc43xx/lpc43_gpioint.c b/arch/arm/src/lpc43xx/lpc43_gpioint.c index bfe660070e..e8726420c1 100644 --- a/arch/arm/src/lpc43xx/lpc43_gpioint.c +++ b/arch/arm/src/lpc43xx/lpc43_gpioint.c @@ -200,7 +200,7 @@ int lpc43_gpioint_pinconfig(uint16_t gpiocfg) if (pinint < 4) { - pinsel = getreg32(LPC43_SCU_PINTSEL0); + pinsel = getreg32(LPC43_SCU_PINTSEL0); pinsel &= ~SCU_PINTSEL0_MASK(pinint); pinsel |= ((pin << SCU_PINTSEL0_INTPIN_SHIFT(pinint)) | (port << SCU_PINTSEL0_PORTSEL_SHIFT(pinint))); @@ -208,7 +208,7 @@ int lpc43_gpioint_pinconfig(uint16_t gpiocfg) } else { - pinsel = getreg32(LPC43_SCU_PINTSEL1); + pinsel = getreg32(LPC43_SCU_PINTSEL1); pinsel &= ~SCU_PINTSEL1_MASK(pinint); pinsel |= ((pin << SCU_PINTSEL1_INTPIN_SHIFT(pinint)) | (port << SCU_PINTSEL1_PORTSEL_SHIFT(pinint)));