aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 14:06:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 14:06:46 +0000
commitb1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889 (patch)
treec291c85d4435b20ee8f92d2726f74f7951ad1d52 /readme.txt
parent14d3b059c225769038a0f3538f491cf6099dbb3e (diff)
downloadChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.tar.gz
ChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.tar.bz2
ChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@166 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
index b00db6498..47e4c16e7 100644
--- a/readme.txt
+++ b/readme.txt
@@ -40,6 +40,17 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
*****************************************************************************
*** 0.5.1 ***
+- NEW: Priority enqueing for messages can be optionally enabled by specifying
+ the P_MSGBYPRIO option when creating a server thread.
+ This change allows the implementation of a priority ceiling protocol into
+ message servers threads. Threads serving messages by priority and threads
+ serving messages in FIFO orded can exist at the same time in the system.
+ This feature can be enabled or disabled by removing the option
+ CH_USE_MESSAGES_PRIORITY into the chconf.h file.
+ Note: This option brings a small overhead when sending a message regardless
+ if in FIFO or priority order, if you dont need priority ordering for your
+ messages it is better disable the feature in chconf.h. It also saves some
+ space.
- Added to the ARM demos load scripts the capability to load code in RAM
instead flash, the function must be marked as:
__attribute__((section(".ramtext")))