diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-17 18:25:56 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-17 18:25:56 +0000 |
commit | 8a865a9a0a0c34f52e3555e98fd42c9235472e8d (patch) | |
tree | d8237d353ec52bfffd62e5443fb8eda1db5d9a56 /readme.txt | |
parent | 0098a8dbed098251e945fe5fb0433532e122a152 (diff) | |
download | ChibiOS-8a865a9a0a0c34f52e3555e98fd42c9235472e8d.tar.gz ChibiOS-8a865a9a0a0c34f52e3555e98fd42c9235472e8d.tar.bz2 ChibiOS-8a865a9a0a0c34f52e3555e98fd42c9235472e8d.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@775 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r-- | readme.txt | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt index 10612524c..e8fddfe47 100644 --- a/readme.txt +++ b/readme.txt @@ -73,13 +73,24 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, *****************************************************************************
*** 1.1.1unstable ***
+- FIX: Fixed a problem with a wrong declaration of the PLL structure in the
+ file lpc214x.h (backported in stable branch).
- FIX: Fixed a problem with some event APIs not showing in the documentation
(backported in stable branch).
- FIX: Fixed wrong assertions in chThdWait() and chHeapFree() (backported in
stable branch).
- FIX: Fixed a small problem in the chcore.c template file.
- NEW: Mode flexible debug configuration options, removed the old CH_USE_DEBUG
- and CH_USE_TRACE.
+ and CH_USE_TRACE. Replaced with CH_DBG_ENABLE_ASSERTS, CH_DBG_ENABLE_TRACE
+ and CH_DBG_FILL_THREADS.
+- NEW: Added a debug option CH_DBG_THREADS_PROFILING for threads profiling.
+ A field into the Thread structure counts the consumed time. The information
+ is not used into the kernel, it is meant for debugging.
+- NEW: Added a debug option CH_DBG_ENABLE_STACK_CHECK for stack overflow
+ checking. The check is not performed in the kernel but in the port code.
+ Currently no ports implement it.
+- CHANGE: Changed the chSemFastWaitS() macro in chSemFastWaitI() and
+ chSemGetCounter() in chSemGetCounterI().
- Improvements to the test suite, added a new level of indirection that allows
to make tests depend on the configuration options without have to put #ifs
into the test main module.
|