diff options
-rw-r--r-- | os/rt/include/chvt.h | 6 | ||||
-rw-r--r-- | readme.txt | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/os/rt/include/chvt.h b/os/rt/include/chvt.h index 868eb77e8..70c3182e6 100644 --- a/os/rt/include/chvt.h +++ b/os/rt/include/chvt.h @@ -45,9 +45,9 @@ "be zero or greater than one"
#endif
-//#if (CH_CFG_ST_TIMEDELTA > 0) && (CH_CFG_TIME_QUANTUM > 0)
-//#error "CH_CFG_TIME_QUANTUM not supported in tickless mode"
-//#endif
+#if (CH_CFG_ST_TIMEDELTA > 0) && (CH_CFG_TIME_QUANTUM > 0)
+#error "CH_CFG_TIME_QUANTUM not supported in tickless mode"
+#endif
#if (CH_CFG_ST_TIMEDELTA > 0) && (CH_DBG_THREADS_PROFILING == TRUE)
#error "CH_DBG_THREADS_PROFILING not supported in tickless mode"
diff --git a/readme.txt b/readme.txt index beb7f4a62..56eb019cf 100644 --- a/readme.txt +++ b/readme.txt @@ -74,6 +74,7 @@ *****************************************************************************
*** 19.1.3 ***
+- FIX: Fixed Round Robin check missing when in tick-less mode (bug #1030).
- FIX: Fixed RCC_AHB1ENR_BKPSRAMEN not present in all STMF4xx devices
(bug #1029).
- FIX: Fixed MPU fix #1027 broke stack checking on Cortex-M devices without
|