diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-04-17 14:44:21 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-04-17 14:44:21 +0000 |
commit | e6ee866d8a37842faa3e9a99e3c3b4935ba28bf0 (patch) | |
tree | dc82d66d299eaca6b4c3166ccc2e0d986cdabcd1 /demos | |
parent | 4e914e72d86c226b8d9674cb05675d549bee89e8 (diff) | |
download | ChibiOS-e6ee866d8a37842faa3e9a99e3c3b4935ba28bf0.tar.gz ChibiOS-e6ee866d8a37842faa3e9a99e3c3b4935ba28bf0.tar.bz2 ChibiOS-e6ee866d8a37842faa3e9a99e3c3b4935ba28bf0.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@268 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/ARMCM3-STM32F103-GCC/chconf.h | 2 | ||||
-rw-r--r-- | demos/ARMCM3-STM32F103-GCC/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/ARMCM3-STM32F103-GCC/chconf.h b/demos/ARMCM3-STM32F103-GCC/chconf.h index c8817f85c..f2b87e5bc 100644 --- a/demos/ARMCM3-STM32F103-GCC/chconf.h +++ b/demos/ARMCM3-STM32F103-GCC/chconf.h @@ -158,7 +158,7 @@ * @note the debug support is port-dependent, it may be not present on some
* targets. In that case stub functions will be included.
*/
-//#define CH_USE_DEBUG
+#define CH_USE_DEBUG
/** Debug option: Includes the threads context switch tracing feature.
*/
diff --git a/demos/ARMCM3-STM32F103-GCC/main.c b/demos/ARMCM3-STM32F103-GCC/main.c index 234878b7b..270786695 100644 --- a/demos/ARMCM3-STM32F103-GCC/main.c +++ b/demos/ARMCM3-STM32F103-GCC/main.c @@ -26,7 +26,7 @@ /*
* Red LEDs blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread1, 64);
+static WorkingArea(waThread1, 128);
static msg_t Thread1(void *arg) {
while (TRUE) {
|