diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog index 23520da45..261415e16 100644 --- a/nuttx/ChangeLog +++ b/nuttx/ChangeLog @@ -1483,6 +1483,9 @@ 5.19 2011-xx-xx Gregory Nutt + * arch/arm/stm32/stm32_idle.c -- During idle times, the STM32 now uses the + WFI instruction to sleep in a reduced power mode until the next interrupt + occurs (Contributed by Uros Platise). * NSH: 'mem' command renamed to 'free'. Output is now more similar to the Linux 'free' command. * NSH: Correct a redirection bug in NSH. The following would not work; it @@ -1500,7 +1503,13 @@ nsh> cat test.txt This is a test - * drvers/pipes/pipe_common.c: Driver open method eas not returning an EINTR + * drivers/pipes/pipe_common.c: Driver open method eas not returning an EINTR error when it received a signal. Instead, it just re-started the wait. This makes it impossible to kill a background pipe operation from NSH. - + * include/stdint.h -- Correct some errors in conditional compilation (submitted + by Johannes Hampel). + * arch/arm/lpc17xx/lp17_idle.c -- Uses the same logic as the STM32: uses the + WFI instruction to sleep in a reduced power mode until the next interrupt + occurs. + * configs/olimex-lpc1766stk -- Added an LED encoded to indicate if the LPC1766 + is in sleeping. diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html index 44fc71a9e..56ddb6351 100644 --- a/nuttx/Documentation/NuttX.html +++ b/nuttx/Documentation/NuttX.html @@ -2085,6 +2085,9 @@ buildroot-1.9 2011-02-10 <spudmonkey@racsa.co.cr>