From 75962347e8a67ddc3d97e0034204e86bfed23652 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 22 Apr 2018 13:08:10 +0000 Subject: More API in the C++ wrapper, minor documentation fixes. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11948 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- 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 382148e7c..6c09344f4 100644 --- a/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp +++ b/demos/STM32/RT-STM32F407-DISCOVERY-G++/main.cpp @@ -184,8 +184,8 @@ int main(void) { */ while (true) { if (palReadPad(GPIOA, GPIOA_BUTTON)) { - tester.start(NORMALPRIO); - tester.wait(); + ThreadReference tref = tester.start(NORMALPRIO); + tref.wait(); }; BaseThread::sleep(TIME_MS2I(500)); } -- cgit v1.2.3