aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 18:15:30 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 18:15:30 +0000
commitd53b90ec47b2c4bd6dc58816b0397509ec049a45 (patch)
tree45ce111e1bfeb1a1502a5f3cb7d16c704c7d17d4
parent3c101f29013c71f6a786f9ac7bdbf29499c47cbb (diff)
downloadChibiOS-d53b90ec47b2c4bd6dc58816b0397509ec049a45.tar.gz
ChibiOS-d53b90ec47b2c4bd6dc58816b0397509ec049a45.tar.bz2
ChibiOS-d53b90ec47b2c4bd6dc58816b0397509ec049a45.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@567 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--ports/ARMCM3/chcore.h2
-rw-r--r--readme.txt9
2 files changed, 6 insertions, 5 deletions
diff --git a/ports/ARMCM3/chcore.h b/ports/ARMCM3/chcore.h
index 212c994de..d3ee658ba 100644
--- a/ports/ARMCM3/chcore.h
+++ b/ports/ARMCM3/chcore.h
@@ -127,7 +127,7 @@ typedef struct {
}
#ifndef INT_REQUIRED_STACK
-#define INT_REQUIRED_STACK 0x10
+#define INT_REQUIRED_STACK 0 /* NOTE: Always safe for this port. */
#endif
/*
diff --git a/readme.txt b/readme.txt
index f0bd1cf7c..7caa6bf40 100644
--- a/readme.txt
+++ b/readme.txt
@@ -85,10 +85,11 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
- FIX: Fixed a bug that prevented the THREAD_EXT_FIELDS to be compiled into
the Thread structure.
- FIX: Removed some references to deprecated APIs from the test suite.
-- FIX: Set the INT_REQUIRED_STACK configuration value for the ARM7 and ARMCM3
- ports to a safer 0x10, it was previously 0 (correct but trimmed to specific
- compiler settings).
-- FIX: Set the INT_REQUIRED_STACK configuration value for the AVR port to 32.
+- FIX: Set the INT_REQUIRED_STACK configuration value for the ARM7 port to a
+ safer 0x10, it was previously 0 (correct but trimmed to specific compiler
+ settings).
+- FIX: Set the INT_REQUIRED_STACK configuration value for the AVR port to a
+ safer 32.
- FIX: Fixed the MinGW demo in order to not use any deprecated construct.
- Removed deprecated threads APIs: chThdCreate() and chThdCreateFast().
- Removed deprecated events APIs: chEvtWait(), chEvtWaitTimeout(), chEvtSend(),