The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
101:7cff1c4259d7
Parent:
98:8ab26030e058
Child:
122:f9eeca106725
--- a/CircularBuffer.h	Wed May 27 08:07:35 2015 +0100
+++ b/CircularBuffer.h	Tue Jun 09 14:29:26 2015 +0100
@@ -88,9 +88,9 @@
 
 private:
     T _pool[BufferSize];
-    CounterType _head;
-    CounterType _tail;
-    bool _full;
+    volatile CounterType _head;
+    volatile CounterType _tail;
+    volatile bool _full;
 };
 
 }