Documentation fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@850 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2009-03-14 13:33:28 +00:00
parent dbf48157fb
commit a93e28fe3d
2 changed files with 4 additions and 1 deletions

View File

@ -1311,6 +1311,7 @@ PREDEFINED = __DOXYGEN__ \
CH_USE_MESSAGES_EVENT=1 \
CH_USE_DYNAMIC=1 \
CH_DBG_ENABLE_ASSERTS=1 \
CH_DBG_ENABLE_CHECKS=1 \
CH_DBG_ENABLE_TRACE=1 \
CH_DBG_ENABLE_STACK_CHECK=1 \
CH_DBG_FILL_THREADS=1 \

View File

@ -78,7 +78,7 @@ typedef struct {
* Function parameter check, if the condition check fails then the kernel
* panics.
* @param c the condition to be verified to be true
* @param m the undecorated function name
* @param func the undecorated function name
* @note The condition is tested only if the @p CH_DBG_ENABLE_CHECKS switch is
* specified in @p chconf.h else the macro does nothing.
*/
@ -115,6 +115,8 @@ typedef struct {
#endif /* !CH_DBG_ENABLE_ASSERTS */
#if !(CH_DBG_ENABLE_ASSERTS || CH_DBG_ENABLE_CHECKS || CH_DBG_ENABLE_STACK_CHECK)
/* When the debug features are disabled this function is replaced by an empty
* macro.*/
#define chDbgPanic(msg) {}
#endif