From b8352d5f4b945b307d5850b3bb2259e9ea3c75a8 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 4 Nov 2017 15:49:25 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10938 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp') diff --git a/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp b/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp index 67868c5bc..5ebcdc852 100644 --- a/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp +++ b/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp @@ -95,7 +95,7 @@ protected: while (true) { switch(curr->action) { case SLEEP: - sleep(MS2ST(curr->value)); + sleep(TIME_MS2I(curr->value)); break; case GOTO: curr = &base[curr->value]; @@ -187,7 +187,7 @@ int main(void) { tester.start(NORMALPRIO); tester.wait(); }; - BaseThread::sleep(MS2ST(500)); + BaseThread::sleep(TIME_MS2I(500)); } return 0; -- cgit v1.2.3