Documentation-related fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8748 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-01-13 10:55:31 +00:00
parent 3c1abde167
commit f3edbee78a
1 changed files with 3 additions and 3 deletions

View File

@ -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
/** @} */