summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-29 10:06:14 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-29 10:06:14 -0600
commitb2ce356ff231fa21b58fd04487b60fb40b1e4b81 (patch)
treeba441cc24a18e33778969cdd32d23450aac9194d /nuttx
parent064703c28579a283f23d7d58e75f3ca2166ae4f4 (diff)
downloadnuttx-b2ce356ff231fa21b58fd04487b60fb40b1e4b81.tar.gz
nuttx-b2ce356ff231fa21b58fd04487b60fb40b1e4b81.tar.bz2
nuttx-b2ce356ff231fa21b58fd04487b60fb40b1e4b81.zip
Update ChangeLogs
Diffstat (limited to 'nuttx')
-rwxr-xr-xnuttx/ChangeLog15
1 files changed, 13 insertions, 2 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index c4329fc31..2fada0366 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -9337,8 +9337,19 @@
RX flow control logic. Modify the rxflowcontrol method to accept
the number of bytes in the buffer and a boolean indication of which
watermark was crossed (2014-12-27).
- * sched/seamphore/sem_waitirq.c must be built when signals are disabled.
+ * sched/semaphore/sem_waitirq.c must be built when signals are disabled.
That is because not handles not only the case of semaphore wait
being awakened by a signal, but also the case with sem_timedwait.c
when the semaphore wait is awakened by a timeout (2014-12-28).
-
+ * arch/arm/src/stm32/stm32_ltdc.c: stm32: fix faulty access to non-
+ existing layer. This disables operation that requires double layer
+ support, when configured for single layer only. From Marco Krahl
+ (2014-12-29).
+ * arch/arm/src/stm32/stm32_ltdc.c: stm32: fix wait upon vertical blank.
+ This should never have occurred before. From Marco Krahl (2014-12-29).
+ * configs/stm32f429i-disco/ltdc/defconfig and src/stm32_boot.c:
+ stm32f429i-disco: change ltdc initializing during boot up. This moves
+ initializing of the ili9341 lcd and ltdc driver to the board specific
+ initializing routine. From Marco Krahl (2014-12-29).
+ * /nuttx/arch/arm/src/stm32/stm32_ltdc.c: Clean up documentation, some
+ formatting improvements. From Marco Krahl (2014-12-29).