aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-03-31 10:22:58 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-03-31 10:22:58 +0000
commit13dd1668a6fc3be71fbd7dcc98a6d3d2cc6ddecc (patch)
treea946695b1cf529f3cd695db44e0b4fee1e425403 /os/rt/include
parent337db8c8b26a6ff706025432f104c91e71804119 (diff)
downloadChibiOS-13dd1668a6fc3be71fbd7dcc98a6d3d2cc6ddecc.tar.gz
ChibiOS-13dd1668a6fc3be71fbd7dcc98a6d3d2cc6ddecc.tar.bz2
ChibiOS-13dd1668a6fc3be71fbd7dcc98a6d3d2cc6ddecc.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7835 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r--os/rt/include/chvt.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/os/rt/include/chvt.h b/os/rt/include/chvt.h
index c3457894f..b2118df07 100644
--- a/os/rt/include/chvt.h
+++ b/os/rt/include/chvt.h
@@ -481,10 +481,6 @@ static inline void chVTDoTickI(void) {
chVTGetSystemTimeX() + 1),
"out of time window");
-/* if (now > 21) {
- __BKPT(0);
- }*/
-
/* Timers processing loop.*/
while (true) {
systime_t now;
@@ -534,11 +530,6 @@ static inline void chVTDoTickI(void) {
if (delta < (systime_t)CH_CFG_ST_TIMEDELTA) {
delta = (systime_t)CH_CFG_ST_TIMEDELTA;
}
-
-// if (now + delta >= 23) {
-// __BKPT(0);
-// }
-
port_timer_set_alarm(now + delta);
chDbgAssert((chVTGetSystemTimeX() - ch.vtlist.vt_lasttime) < delta,