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

This commit is contained in:
gdisirio 2008-12-13 09:55:16 +00:00
parent 2b8c31c32f
commit 436aa85ab1
4 changed files with 12 additions and 2 deletions

View File

@ -60,7 +60,7 @@ include ../../src/kernel.mk
include ../../test/test.mk
# List C source files here
SRC = chcore.c demo.c ../../ports/win32/simcom.c \
SRC = chcore.c main.c ../../ports/win32/simcom.c \
${KERNSRC} \
${TESTSRC}
@ -77,7 +77,7 @@ ULIBDIR =
ULIBS =
# Define optimisation level here
OPT = -Os -fomit-frame-pointer
OPT = -ggdb -Os -fomit-frame-pointer
#
# End of user defines

View File

@ -74,6 +74,14 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
*****************************************************************************
*** 0.8.3 ***
- FIX: The MinGW simulated demo now works again after breaking in 0.8.2
because the changes to the macro names.
- FIX: Adjusted the test suite stack sizes for the MinGW simulated demo, now
the demo passes all the tests.
- Renamed the MinGW demo main source from demo.c to main.c in order to follow
the pattern of all the other demos.
- Added debug switches to the MinGW simulated demo, not it is possible to
debug the demo (and the kernel) inside Eclipse without a physical board.
- Updated the C++ wrapper with the latest APIs changes and fixed some bugs.
- Small fixes to the documentation.

View File

@ -26,6 +26,8 @@
#if defined(CH_ARCHITECTURE_AVR) || defined(CH_ARCHITECTURE_MSP430)
#define THREADS_STACK_SIZE 64
#elif defined(CH_ARCHITECTURE_WIN32SIM)
#define THREADS_STACK_SIZE 512
#else
#define THREADS_STACK_SIZE 128
#endif