Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Blynk_RBL_BLE_Nano Blynk_MicroBit Blynk_Serial Blynk_RBL_BLE_Nano
Diff: utility/BlynkFifo2.h
- Revision:
- 15:975b60f7a8ff
- Parent:
- 9:7369ec77a3ea
--- a/utility/BlynkFifo2.h Tue Jun 20 00:20:01 2017 +0300
+++ b/utility/BlynkFifo2.h Mon Nov 27 19:48:07 2017 +0200
@@ -110,6 +110,13 @@
return t;
}
+ T peek(void)
+ {
+ int r = _r;
+ while (r == _w);
+ return _b[r];
+ }
+
int get(T* p, int n, bool t = false)
{
int c = n;