diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/ARMCM4-STM32F303-DISCOVERY/chconf.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/demos/ARMCM4-STM32F303-DISCOVERY/chconf.h b/demos/ARMCM4-STM32F303-DISCOVERY/chconf.h index 928186af8..727f9de89 100644 --- a/demos/ARMCM4-STM32F303-DISCOVERY/chconf.h +++ b/demos/ARMCM4-STM32F303-DISCOVERY/chconf.h @@ -128,13 +128,14 @@ /*===========================================================================*/
/**
- * @brief Realtime counter APIs.
- * @details If enabled then the RT APIs are included in the kernel.
+ * @brief Time Measurement APIs.
+ * @details If enabled then the time measurement APIs are included in
+ * the kernel.
*
* @note The default is @p TRUE.
*/
-#if !defined(CH_CFG_USE_RT) || defined(__DOXYGEN__)
-#define CH_CFG_USE_RT TRUE
+#if !defined(CH_CFG_USE_TM) || defined(__DOXYGEN__)
+#define CH_CFG_USE_TM TRUE
#endif
/**
|