Update ChangeLog for nutt1-7.19

This commit is contained in:
Gregory Nutt 2016-12-25 14:23:10 -06:00
parent 56397f59fc
commit 018ce27e6a

View File

@ -1759,64 +1759,76 @@
* apps/platform: Add support for STM32L476-MDK (2016-10-06). * apps/platform: Add support for STM32L476-MDK (2016-10-06).
* apps/nshlib: Don't try to flush output streams if stdio buffered * apps/nshlib: Don't try to flush output streams if stdio buffered
I/O is not supported (2016-10-06). I/O is not supported (2016-10-06).
* OS test: enhance pthread cancellation test some (2016-12-11).
* examples/ostest: Add some delays to the pthread cancellation test. 7.18 2016-10-08 Gregory Nutt <gnutt@nuttx.org>
With deferred cancellation enabled, things happen more asynchronously
(2016-12-10). * Rename examples/buttons to examples/archbuttons. From Alan Carvalho
* examples/ostest: Extend the pthread cancellation test to exercise de Assis (2016-10-11).
pthread_cleanup_push() (and pthread_cleanup_pop() indirectly via * Add a new buttons example that uses the button character driver
pthread_cancel() and pthread_exit() (2016-12-08). instead of the architecture buttons directly. From Alan Carvalho de
* Add support for new scheduler instrumentation (2016-12-07). Assis (2016-10-11).
* Remove BOARDIOC_CAN_INITIALIZE. CAN initialization is now done in the * apps/nshlib: nsh_getdirpath(), use snprint instead of sprintf to avoid
board initialization logic just like every other device driver possibility of buffer overrun. Noted by Chung Hwan Kim (2016-10-11).
(2016-12-06). * examples/cctype: Add an example to verify cctype functions
* Remove all usage of BOARDIOC_ADCTEST_SETUP, BIOARDIOC_PWMSETUP (2016-10-22).
(2016-12-05). * Add platform support for the ESP32 core v2 board (2016-10-31).
* fix bug un ftpd file or socket may be not closed. From Pierre-Noel * Modbus Master is missing many files and doesn't compile at all. More
Bouteville (2016-12-04). details in https://groups.yahoo.com/neo/groups/nuttx/conversations/topics/13734.
* esp8266 update cosmetic and many bug fix. From Pierre-Noel Bouteville From Vytautas Lukenskas (2016-11-03).
(2016-12-04). * graphics/traveler/tcledit and libwld: Add an X11 Tcl/Tk tool that can
* Import patch to fix:cJSON_PrintUnformatted() behaves unexpected if an be used to edit Traveler world files (2016-11-12).
empty array shall be printed to text. from Jerome Lang 2012-04-19. * platform/esp32-core: Fix some naming that prenvented building the C++
From Pierre-Noel Bouteville (2016-12-04). support (2016-11-14).
* netutils/ntpclient: Fix missing left parenthesis. From Pierre-Noel * Make.defs: Using wrong link script if native window tool used with
Bouteville (2016-12-04). Cygwin (2016-11-17).
* Remove some garbage characters added by error. From Pierre-Noel * apps/examples/timer: Should detach signal handler before exiting
Bouteville (2016-12-04). (2016-11-18).
* Remove RGMP example (2016-12-02). * Fixed bug that didn't free ftpd ressources on exit. From Pascal
* Graphics: Remove all NX server taks. Instead, call boardctl() to the Speck (2016-11-21).
NX server kernel thread (2016-12-01).
* apps/system/sched_lock: Add support for spinlock notes (2016-12-01).
* apps/system/sched_note: Extend to include additions to instumentation
for SMP (2016-11-27).
* apps/examples/archbuttons: Removed becaue it violates OS interface
principles (2016-11-22).
* The examples/qencoder app was trying to init the encoder by a direct * The examples/qencoder app was trying to init the encoder by a direct
call into the board, cheating in a local header to declare the call into the board, cheating in a local header to declare the
normally unavailable function prototype. From Sebastien Lorquet normally unavailable function prototype. From Sebastien Lorquet
(2016-11-22). (2016-11-22).
* Fixed bug that didn't free ftpd ressources on exit. From Pascal * apps/examples/archbuttons: Removed becaue it violates OS interface
Speck (2016-11-21). principles (2016-11-22).
* apps/examples/timer: Should detach signal handler before exiting * apps/system/sched_note: Extend to include additions to instumentation
(2016-11-18). for SMP (2016-11-27).
* Make.defs: Using wrong link script if native window tool used with * apps/system/sched_lock: Add support for spinlock notes (2016-12-01).
Cygwin (2016-11-17). * Graphics: Remove all NX server taks. Instead, call boardctl() to the
* platform/esp32-core: Fix some naming that prenvented building the C++ NX server kernel thread (2016-12-01).
support (2016-11-14). * Remove RGMP example (2016-12-02).
* graphics/traveler/tcledit and libwld: Add an X11 Tcl/Tk tool that can * Remove some garbage characters added by error. From Pierre-Noel
be used to edit Traveler world files (2016-11-12). Bouteville (2016-12-04).
* Modbus Master is missing many files and doesn't compile at all. More * netutils/ntpclient: Fix missing left parenthesis. From Pierre-Noel
details in https://groups.yahoo.com/neo/groups/nuttx/conversations/topics/13734. Bouteville (2016-12-04).
From Vytautas Lukenskas (2016-11-03). * Import patch to fix:cJSON_PrintUnformatted() behaves unexpected if an
* Add platform support for the ESP32 core v2 board (2016-10-31). empty array shall be printed to text. from Jerome Lang 2012-04-19.
* examples/cctype: Add an example to verify cctype fucntions From Pierre-Noel Bouteville (2016-12-04).
(2016-10-22). * esp8266 update cosmetic and many bug fix. From Pierre-Noel Bouteville
* apps/nshlib: nsh_getdirpath(), use snprint instead of sprintf to avoid (2016-12-04).
possibility of buffer overrun. Noted by Chung Hwan Kim (2016-10-11). * fix bug un ftpd file or socket may be not closed. From Pierre-Noel
* Add a new buttons example that uses the button character driver Bouteville (2016-12-04).
instead of the architecture buttons directly. From Alan Carvalho de * Remove all usage of BOARDIOC_ADCTEST_SETUP, BIOARDIOC_PWMSETUP
Assis (2016-10-11). (2016-12-05).
* Rename examples/buttons to examples/archbuttons. From Alan Carvalho * Remove BOARDIOC_CAN_INITIALIZE. CAN initialization is now done in the
de Assis (2016-10-xx). board initialization logic just like every other device driver
(2016-12-06).
* Add support for new scheduler instrumentation (2016-12-07).
* examples/ostest: Extend the pthread cancellation test to exercise
pthread_cleanup_push() (and pthread_cleanup_pop() indirectly via
pthread_cancel() and pthread_exit() (2016-12-08).
* examples/ostest: Add some delays to the pthread cancellation test.
With deferred cancellation enabled, things happen more asynchronously
(2016-12-10).
* OS test: enhance pthread cancellation test some (2016-12-11).
* examples/ostest: Add some delays to the pthread cancellation test.
With deferred cancellation enabled, things happen more asynchronously
(2016-12-10).
* OS test: enhance pthread cancellation test some (2016-12-11).
* Remove std_readline(). This called up_getc() and up_putc() directly,
violating the POSIX OS interface (2016-12-13).
* NSH: dd command will show statistics. From Masayuki Ishikawa
(2016-12-19).
* Add platform support for the Olimex STM32 P407 (2016-12-21).
7.19 2016-xx-xx Gregory Nutt <gnutt@nuttx.org> 7.19 2017-xx-xx Gregory Nutt <gnutt@nuttx.org>