aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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(),