diff --git a/demos/ARM7-LPC214x-G++/main.cpp b/demos/ARM7-LPC214x-G++/main.cpp index 37d79c04d..2f89d5dcf 100644 --- a/demos/ARM7-LPC214x-G++/main.cpp +++ b/demos/ARM7-LPC214x-G++/main.cpp @@ -108,7 +108,7 @@ protected: } public: - SequencerThread(const seqop_t *sequence) : EnhancedThread<64>("sequencer") { + SequencerThread(const seqop_t *sequence) : EnhancedThread<128>("sequencer") { base = curr = sequence; } diff --git a/readme.txt b/readme.txt index fc44d634e..31856dad9 100644 --- a/readme.txt +++ b/readme.txt @@ -107,6 +107,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, branch). - FIX: Fixed a problem with a wrong declaration of the PLL structure in the file lpc214x.h (backported in stable branch). +- FIX: Fixed build problem with the C++ demo (bug 2687489). - FIX: Removed EMAC driver from the AT91SAM7X256 demo makefile (bug 2686347). - FIX: Removed C++ wrapper from the STM32 demo makefile (bug 2686451). - FIX: Fixed a problem with some event APIs not showing in the documentation diff --git a/todo.txt b/todo.txt index 19c8c7464..10cb4cf7e 100644 --- a/todo.txt +++ b/todo.txt @@ -23,7 +23,6 @@ After 1.0.0: * Stack sizes article into the documentation. * Logo... * Architecture diagram. -- Code examples into the documentation. After 1.2.0: X Abstract I/O channels rather than just serial ports. @@ -40,6 +39,7 @@ X Abstract I/O channels rather than just serial ports. - Update C++ wrapper (Heap, Pools, Mailboxes and any new feature). - Think about making threads return void. - Add tests documentation to the general documentation via doxygen. +- Code examples into the documentation. Ideas for 2.x.x: - High resolution timers and tickless kernel.