diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-13 10:55:31 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-13 10:55:31 +0000 |
commit | f3edbee78aa8d73ce232af0957eb5ca66bc6dac2 (patch) | |
tree | 17b13fba3d8da3ae98b557612c5ba6c0c10456fe | |
parent | 3c1abde16732c04c491d5dc421954209d87457aa (diff) | |
download | ChibiOS-f3edbee78aa8d73ce232af0957eb5ca66bc6dac2.tar.gz ChibiOS-f3edbee78aa8d73ce232af0957eb5ca66bc6dac2.tar.bz2 ChibiOS-f3edbee78aa8d73ce232af0957eb5ca66bc6dac2.zip |
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8748 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/rt/include/chdebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/rt/include/chdebug.h b/os/rt/include/chdebug.h index c4fd39f39..593a25c88 100644 --- a/os/rt/include/chdebug.h +++ b/os/rt/include/chdebug.h @@ -43,14 +43,14 @@ /**
* @brief Trace buffer entries.
*/
-#ifndef CH_DBG_TRACE_BUFFER_SIZE
+#if !defined(CH_DBG_TRACE_BUFFER_SIZE) || defined(__DOXYGEN__)
#define CH_DBG_TRACE_BUFFER_SIZE 64
#endif
/**
* @brief Fill value for thread stack area in debug mode.
*/
-#ifndef CH_DBG_STACK_FILL_VALUE
+#if !defined(CH_DBG_STACK_FILL_VALUE) || defined(__DOXYGEN__)
#define CH_DBG_STACK_FILL_VALUE 0x55
#endif
@@ -61,7 +61,7 @@ * a debugger. A uninitialized field is not an error in itself but it
* better to know it.
*/
-#ifndef CH_DBG_THREAD_FILL_VALUE
+#if !defined(CH_DBG_THREAD_FILL_VALUE) || defined(__DOXYGEN__)
#define CH_DBG_THREAD_FILL_VALUE 0xFF
#endif
/** @} */
|