ECE 4180 - Final Project Team / Mbed 2 deprecated WalkieTalkie

Dependencies:   mbed 4DGL-uLCD-SE mbed-rtos nRF24L01P

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: