aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2019-05-26 08:11:11 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2019-05-26 08:11:11 +0000
commit158c0e054819865910c2a8b1793e95ec74f9f301 (patch)
tree702fa5b148125b38f13bc232b3d4ca5d22f3f85d
parentabda3392d621ddb49fedced945438955609c8955 (diff)
downloadChibiOS-158c0e054819865910c2a8b1793e95ec74f9f301.tar.gz
ChibiOS-158c0e054819865910c2a8b1793e95ec74f9f301.tar.bz2
ChibiOS-158c0e054819865910c2a8b1793e95ec74f9f301.zip
Fixed bug #1030.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_19.1.x@12812 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
-rw-r--r--os/rt/include/chvt.h6
-rw-r--r--readme.txt1
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