aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ch.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-25 09:34:25 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-25 09:34:25 +0000
commit902470d1c542735b989a727355744a974af43de4 (patch)
tree3b467b808f7323438f8a7625e02da3536dc52d62 /docs/ch.txt
parent8317685beb67ed9341bc83d03153580b816f452e (diff)
downloadChibiOS-902470d1c542735b989a727355744a974af43de4.tar.gz
ChibiOS-902470d1c542735b989a727355744a974af43de4.tar.bz2
ChibiOS-902470d1c542735b989a727355744a974af43de4.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@481 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/ch.txt')
-rw-r--r--docs/ch.txt9
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/ch.txt b/docs/ch.txt
index de2db1c6f..2186de365 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -351,8 +351,6 @@
* @defgroup VirtualTimers Virtual Timers
* @{
* Virtual Timers APIs.
- * In order to use the Virtual Timers the \p CH_USE_VIRTUAL_TIMERS option
- * must be specified in \p chconf.h.
* @file src/chdelta.c Virtual Timers code.
* @file delta.h Virtual Timers macros and structures.
*/
@@ -362,8 +360,6 @@
* @defgroup Time Time
* @{
* Time related APIs.
- * In order to use the Time APIs the \p CH_USE_SLEEP
- * option must be specified in \p chconf.h.
* @file include/sleep.h Time macros and structures.
* @file chsleep.c Time functions.
*/
@@ -503,9 +499,8 @@
* server threads but just a pointer passed so the exchange is very time
* efficient.<br>
* Messages are usually processed in FIFO order but it is possible to process
- * them in priority order by specifying \p P_MSGBYPRIO when creating a server
- * thread, \p CH_USE_MESSAGES_PRIORITY must also be specified in \p chconf.h
- * in order to enable the feature.<br>
+ * them in priority order by specifying CH_USE_MESSAGES_PRIORITY
+ * in \p chconf.h.<br>
* Threads do not need to allocate space for message queues, the mechanism
* just requires two extra pointers in the \p Thread structure (the message
* queue header).<br>