aboutsummaryrefslogtreecommitdiffstats
path: root/demos/ARMCM3-STM32F103-G++/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'demos/ARMCM3-STM32F103-G++/main.cpp')
-rw-r--r--demos/ARMCM3-STM32F103-G++/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/ARMCM3-STM32F103-G++/main.cpp b/demos/ARMCM3-STM32F103-G++/main.cpp
index ce626ee9c..aab7331fc 100644
--- a/demos/ARMCM3-STM32F103-G++/main.cpp
+++ b/demos/ARMCM3-STM32F103-G++/main.cpp
@@ -106,7 +106,7 @@ public:
/*
* Tester thread class. This thread executes the test suite.
*/
-class TesterThread : public EnhancedThread<128> {
+class TesterThread : public EnhancedThread<256> {
protected:
virtual msg_t Main(void) {
@@ -115,7 +115,7 @@ protected:
}
public:
- TesterThread(void) : EnhancedThread<128>("tester") {
+ TesterThread(void) : EnhancedThread<256>("tester") {
}
};