diff options
Diffstat (limited to 'demos')
| -rw-r--r-- | demos/ARM7-LPC214x-G++/main.cpp | 2 | ||||
| -rw-r--r-- | demos/ARM7-LPC214x-GCC-minimal/main.c | 4 | ||||
| -rw-r--r-- | demos/ARM7-LPC214x-GCC/chconf.h | 4 | ||||
| -rw-r--r-- | demos/ARM7-LPC214x-GCC/main.c | 4 | 
4 files changed, 7 insertions, 7 deletions
diff --git a/demos/ARM7-LPC214x-G++/main.cpp b/demos/ARM7-LPC214x-G++/main.cpp index a269189ab..37d79c04d 100644 --- a/demos/ARM7-LPC214x-G++/main.cpp +++ b/demos/ARM7-LPC214x-G++/main.cpp @@ -80,7 +80,7 @@ static const seqop_t LED3_sequence[] =   * Any sequencer is just an instance of this class, all the details are
   * totally encapsulated and hidden to the application level.
   */
 -class SequencerThread : EnhancedThread<64> {
 +class SequencerThread : EnhancedThread<128> {
  private:
    const seqop_t *base, *curr;                   // Thread local variables.
 diff --git a/demos/ARM7-LPC214x-GCC-minimal/main.c b/demos/ARM7-LPC214x-GCC-minimal/main.c index b80264ed7..59dc04158 100644 --- a/demos/ARM7-LPC214x-GCC-minimal/main.c +++ b/demos/ARM7-LPC214x-GCC-minimal/main.c @@ -24,7 +24,7 @@  /*
   * Red LEDs blinker thread, times are in milliseconds.
   */
 -static WORKING_AREA(waThread1, 64);
 +static WORKING_AREA(waThread1, 128);
  static msg_t Thread1(void *arg) {
    while (TRUE) {
 @@ -43,7 +43,7 @@ static msg_t Thread1(void *arg) {  /*
   * Yellow LED blinker thread, times are in milliseconds.
   */
 -static WORKING_AREA(waThread2, 64);
 +static WORKING_AREA(waThread2, 128);
  static msg_t Thread2(void *arg) {
    while (TRUE) {
 diff --git a/demos/ARM7-LPC214x-GCC/chconf.h b/demos/ARM7-LPC214x-GCC/chconf.h index cb606580b..72407ff5b 100644 --- a/demos/ARM7-LPC214x-GCC/chconf.h +++ b/demos/ARM7-LPC214x-GCC/chconf.h @@ -368,7 +368,7 @@   *       may not be implemented at all.
   */
  #if !defined(CH_DBG_ENABLE_STACK_CHECK) || defined(__DOXYGEN__)
 -#define CH_DBG_ENABLE_STACK_CHECK       FALSE
 +#define CH_DBG_ENABLE_STACK_CHECK       TRUE
  #endif
  /**
 @@ -376,7 +376,7 @@   * pattern when a thread is created.   */
  #if !defined(CH_DBG_FILL_THREADS) || defined(__DOXYGEN__)
 -#define CH_DBG_FILL_THREADS             FALSE
 +#define CH_DBG_FILL_THREADS             TRUE
  #endif
  /**
 diff --git a/demos/ARM7-LPC214x-GCC/main.c b/demos/ARM7-LPC214x-GCC/main.c index 96b117f8a..c83d9a419 100644 --- a/demos/ARM7-LPC214x-GCC/main.c +++ b/demos/ARM7-LPC214x-GCC/main.c @@ -29,7 +29,7 @@  /*
   * Red LEDs blinker thread, times are in milliseconds.
   */
 -static WORKING_AREA(waThread1, 64);
 +static WORKING_AREA(waThread1, 128);
  static msg_t Thread1(void *arg) {
    while (TRUE) {
 @@ -48,7 +48,7 @@ static msg_t Thread1(void *arg) {  /*
   * Yellow LED blinker thread, times are in milliseconds.
   */
 -static WORKING_AREA(waThread2, 64);
 +static WORKING_AREA(waThread2, 128);
  static msg_t Thread2(void *arg) {
    while (TRUE) {
  | 
