git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@567 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2008-12-30 18:15:30 +00:00
parent 3c101f2901
commit d53b90ec47
2 changed files with 6 additions and 5 deletions

View File

@ -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
/*

View File

@ -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(),