aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-04-02 13:41:54 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-04-02 13:41:54 +0000
commitfad3a0802ac7f43da5f7dcf68e369dc735de3ed2 (patch)
tree2985b301a0b58e14ed0d155bad7565360644b41b /docs
parentee73370e0a3d3de24082355d7000f792c06dc5ff (diff)
downloadChibiOS-fad3a0802ac7f43da5f7dcf68e369dc735de3ed2.tar.gz
ChibiOS-fad3a0802ac7f43da5f7dcf68e369dc735de3ed2.tar.bz2
ChibiOS-fad3a0802ac7f43da5f7dcf68e369dc735de3ed2.zip
Documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@864 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs')
-rw-r--r--docs/Doxyfile2
-rw-r--r--docs/src/concepts.dox2
-rw-r--r--docs/src/interrupts.dox2
-rw-r--r--docs/src/saveram.dox3
-rw-r--r--docs/src/timing.dox2
5 files changed, 6 insertions, 5 deletions
diff --git a/docs/Doxyfile b/docs/Doxyfile
index 5505c9ff0..482fae3d9 100644
--- a/docs/Doxyfile
+++ b/docs/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 1.1.3unstable
+PROJECT_NUMBER = 1.2.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
diff --git a/docs/src/concepts.dox b/docs/src/concepts.dox
index cc768052e..725be9b52 100644
--- a/docs/src/concepts.dox
+++ b/docs/src/concepts.dox
@@ -34,7 +34,7 @@
* @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 Time @a VT, @a Thd, @a Sem,
+ * 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.
*
diff --git a/docs/src/interrupts.dox b/docs/src/interrupts.dox
index 679eb8884..d2dfb70b5 100644
--- a/docs/src/interrupts.dox
+++ b/docs/src/interrupts.dox
@@ -20,7 +20,7 @@
/**
* @page article_interrupts Writing interrupt handlers under ChibiOS/RT
* @{
- * Since version 1.1.0 ChbiOS/RT offers a cross-platform system for writing
+ * Since version 1.1.0 ChibiOS/RT offers a cross-platform method for writing
* interrupt handlers. Port-related and compiler-related details are
* encapsulated within standard system macros.<br>
* An interrupt handler assumes the following general form:
diff --git a/docs/src/saveram.dox b/docs/src/saveram.dox
index e237da909..7a1f6f662 100644
--- a/docs/src/saveram.dox
+++ b/docs/src/saveram.dox
@@ -71,7 +71,8 @@ static void MyThread(void *arg) {
main() {
chSysInit();
...
- chThdCreateStatic(waMyThread, sizeof(waMyThread), NORMALPRIO, MyThread, NULL);
+ chThdCreateStatic(waMyThread, sizeof(waMyThread), NORMALPRIO,
+ (tfunc_t)MyThread, NULL);
...
}
* @endcode
diff --git a/docs/src/timing.dox b/docs/src/timing.dox
index 7732bef0b..9e013c412 100644
--- a/docs/src/timing.dox
+++ b/docs/src/timing.dox
@@ -39,7 +39,7 @@ msg_t my_thread(void *param) {
* executed at irregular intervals, as example:<br><br>
* T0...T0+1000...T0+2002...T0+3002...T0+4005...etc.<br><br>
* Also note that the error increases over time and this kind of behavior can
- * lead anomalies really hard to debug.
+ * lead to anomalies really hard to debug.
* <h2>A better solution</h2>
* It is possible to rewrite the above code using absolute deadlines rather
* than fixed intervals: