Fixed bug 2687489.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@851 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2009-03-15 09:27:36 +00:00
parent a93e28fe3d
commit ac4e799160
3 changed files with 3 additions and 2 deletions

View File

@ -108,7 +108,7 @@ protected:
} }
public: public:
SequencerThread(const seqop_t *sequence) : EnhancedThread<64>("sequencer") { SequencerThread(const seqop_t *sequence) : EnhancedThread<128>("sequencer") {
base = curr = sequence; base = curr = sequence;
} }

View File

@ -107,6 +107,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
branch). branch).
- FIX: Fixed a problem with a wrong declaration of the PLL structure in the - FIX: Fixed a problem with a wrong declaration of the PLL structure in the
file lpc214x.h (backported in stable branch). 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 EMAC driver from the AT91SAM7X256 demo makefile (bug 2686347).
- FIX: Removed C++ wrapper from the STM32 demo makefile (bug 2686451). - FIX: Removed C++ wrapper from the STM32 demo makefile (bug 2686451).
- FIX: Fixed a problem with some event APIs not showing in the documentation - FIX: Fixed a problem with some event APIs not showing in the documentation

View File

@ -23,7 +23,6 @@ After 1.0.0:
* Stack sizes article into the documentation. * Stack sizes article into the documentation.
* Logo... * Logo...
* Architecture diagram. * Architecture diagram.
- Code examples into the documentation.
After 1.2.0: After 1.2.0:
X Abstract I/O channels rather than just serial ports. 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). - Update C++ wrapper (Heap, Pools, Mailboxes and any new feature).
- Think about making threads return void. - Think about making threads return void.
- Add tests documentation to the general documentation via doxygen. - Add tests documentation to the general documentation via doxygen.
- Code examples into the documentation.
Ideas for 2.x.x: Ideas for 2.x.x:
- High resolution timers and tickless kernel. - High resolution timers and tickless kernel.