aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-08 18:01:38 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-08 18:01:38 +0000
commit787956f72ea99e5cbac58964d02f78d4212aaaf9 (patch)
tree032f7f795c7ac3f25186a3e3d55ffe125bef83e3 /os
parenta6e69a827cb0eddd569df4670f32a93159be3c35 (diff)
downloadChibiOS-787956f72ea99e5cbac58964d02f78d4212aaaf9.tar.gz
ChibiOS-787956f72ea99e5cbac58964d02f78d4212aaaf9.tar.bz2
ChibiOS-787956f72ea99e5cbac58964d02f78d4212aaaf9.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7564 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r--os/nil/include/nil.h4
-rw-r--r--os/nil/src/nil.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/os/nil/include/nil.h b/os/nil/include/nil.h
index 47f93af0b..815b5ead4 100644
--- a/os/nil/include/nil.h
+++ b/os/nil/include/nil.h
@@ -23,7 +23,7 @@
* @details This header includes all the required kernel headers so it is the
* only header you usually need to include in your application.
*
- * @addtogroup nil
+ * @addtogroup NIL
* @{
*/
@@ -758,7 +758,7 @@ typedef struct {
* @note The counter can reach its maximum and then restart from zero.
* @note This function can be called from any context but its atomicity
* is not guaranteed on architectures whose word size is less than
- * @systime_t size.
+ * @p systime_t size.
*
* @return The system time in ticks.
*
diff --git a/os/nil/src/nil.c b/os/nil/src/nil.c
index 48f640b09..e79fdca27 100644
--- a/os/nil/src/nil.c
+++ b/os/nil/src/nil.c
@@ -21,7 +21,7 @@
* @file nil.c
* @brief Nil RTOS main source file.
*
- * @defgroup nil
+ * @defgroup NIL API
* @details Nil RTOS services.
* @{
*/
@@ -118,6 +118,8 @@ void chSysInit(void) {
* in debug mode.
* @note Can be invoked from any system state.
*
+ * @param[in] reason pointer to an error string
+ *
* @special
*/
void chSysHalt(const char *reason) {