diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-05 07:36:15 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-05 07:36:15 +0000 |
commit | b529e1b88e7e187c14268d4facc6542d3b499f6b (patch) | |
tree | a6179fe9b2137b22f97745b6ce5ddc56d9259960 /testhal/STM32/STM32F0xx/EXT | |
parent | a2e1dc3941bd11af6dbce139cdccb904794cbd7c (diff) | |
download | ChibiOS-b529e1b88e7e187c14268d4facc6542d3b499f6b.tar.gz ChibiOS-b529e1b88e7e187c14268d4facc6542d3b499f6b.tar.bz2 ChibiOS-b529e1b88e7e187c14268d4facc6542d3b499f6b.zip |
Separate trace module, simplified tracer configuration.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9239 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F0xx/EXT')
-rw-r--r-- | testhal/STM32/STM32F0xx/EXT/chconf.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testhal/STM32/STM32F0xx/EXT/chconf.h b/testhal/STM32/STM32F0xx/EXT/chconf.h index 1832cc3c6..c2d6f0496 100644 --- a/testhal/STM32/STM32F0xx/EXT/chconf.h +++ b/testhal/STM32/STM32F0xx/EXT/chconf.h @@ -351,17 +351,16 @@ /**
* @brief Debug option, trace buffer.
- * @details If enabled then the context switch circular trace buffer is
- * activated.
+ * @details If enabled then the trace buffer is activated.
*
- * @note The default is @p CH_DBG_TRACE_MASK_NONE.
+ * @note The default is @p CH_DBG_TRACE_MASK_DISABLED.
*/
#define CH_DBG_TRACE_MASK CH_DBG_TRACE_MASK_ALL
/**
* @brief Trace buffer entries.
* @note The trace buffer is only allocated if @p CH_DBG_TRACE_MASK is
- * different from @p CH_DBG_TRACE_MASK_NONE.
+ * different from @p CH_DBG_TRACE_MASK_DISABLED.
*/
#define CH_DBG_TRACE_BUFFER_SIZE 128
|