diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-10 15:31:58 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-10 15:31:58 +0000 |
commit | da4f9beaee8f1f8f344012b4d9a122462a6c802e (patch) | |
tree | ecb2cc0d9efd39801f17f8262dc722e48f50456e /docs/src | |
parent | a2bab9c63d848ccfce1440afd40e1eed7b2955ef (diff) | |
download | ChibiOS-da4f9beaee8f1f8f344012b4d9a122462a6c802e.tar.gz ChibiOS-da4f9beaee8f1f8f344012b4d9a122462a6c802e.tar.bz2 ChibiOS-da4f9beaee8f1f8f344012b4d9a122462a6c802e.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@827 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/concepts.dox | 6 | ||||
-rw-r--r-- | docs/src/timing.dox | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/concepts.dox b/docs/src/concepts.dox index d8d874bac..8ef626c01 100644 --- a/docs/src/concepts.dox +++ b/docs/src/concepts.dox @@ -34,9 +34,9 @@ * @section naming Naming Conventions
* ChibiOS/RT APIs are all named following this convention:
* @a ch\<group\>\<action\>\<suffix\>().
- * The possible groups are: @a Sys, @a Sch, @a VT, @a Thd, @a Sem, @a Mtx,
- * @a Cond, @a Evt, @a Msg, @a IQ, @a OQ, @a HQ, @a FDD, @a HDD, @a Dbg,
- * @a Heap, @a Pool.
+ * The possible groups are: @a Sys, @a Sch, @a Time @a VT, @a Thd, @a Sem,
+ * @a Mtx, @a Cond, @a Evt, @a Msg, @a IQ, @a OQ, @a HQ, @a FDD, @a HDD,
+ * @a Dbg, @a Heap, @a Pool.
*
* @section api_suffixes API Names Suffixes
* The suffix can be one of the following:
diff --git a/docs/src/timing.dox b/docs/src/timing.dox index 9fd19545d..7732bef0b 100644 --- a/docs/src/timing.dox +++ b/docs/src/timing.dox @@ -46,7 +46,7 @@ msg_t my_thread(void *param) { * @code
msg_t my_thread(void *param) {
- systick_t time = chSysGetTime(); /* T0 */
+ systick_t time = chTimeNow(); /* T0 */
while (TRUE) {
time += MS2ST(1000); /* Next deadline */
do_something();
|