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.
Dependencies: mbed 4DGL-uLCD-SE mbed-rtos nRF24L01P
Diff: CircularBuf.h
- Revision:
- 37:b146a0a0b894
- Parent:
- 36:c3cac3494e9b
- Child:
- 38:a651c032e2b6
--- a/CircularBuf.h Sun Apr 29 15:23:56 2018 +0000 +++ b/CircularBuf.h Sun Apr 29 15:26:52 2018 +0000 @@ -9,7 +9,9 @@ // You can push data on one side and remove from the other // As you add and remove data, the location of the data "moves" around the circle // https://en.wikipedia.org/wiki/Circular_buffer - +/** + * Circular Buffer class. + */ template <typename T> class CircularBuf { public: