Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.
Dependents: denki-yohou_b TestY201 Network-RTOS NTPClient_HelloWorld ... more
Deprecated
This is the mbed 2 rtos library. mbed OS 5 integrates the mbed library with mbed-rtos. With this, we have provided thread safety for all mbed APIs. If you'd like to learn about using mbed OS 5, please see the docs.
Diff: rtos/RtosTimer.h
- Revision:
- 112:53ace74b190c
- Parent:
- 31:015df9e602b6
- Child:
- 119:19af2d39a542
diff -r 162b12aea5f2 -r 53ace74b190c rtos/RtosTimer.h
--- a/rtos/RtosTimer.h Tue May 03 00:15:52 2016 +0100
+++ b/rtos/RtosTimer.h Thu May 05 20:45:13 2016 +0100
@@ -61,8 +61,10 @@
private:
osTimerId _timer_id;
osTimerDef_t _timer;
-#ifdef CMSIS_OS_RTX
+#if defined(CMSIS_OS_RTX) && !defined(__MBED_CMSIS_RTOS_CM)
uint32_t _timer_data[5];
+#else
+ uint32_t _timer_data[6];
#endif
};
mbed official




