Update ChangeLog

This commit is contained in:
Gregory Nutt 2016-06-05 15:01:16 -06:00
parent 7fa31493c9
commit af43ce4f46
2 changed files with 22 additions and 5 deletions

View File

@ -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)

View File

@ -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)));