ECE 4180 - Final Project Team / Mbed 2 deprecated WalkieTalkie

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

Revision:
38:a651c032e2b6
Parent:
37:b146a0a0b894
Child:
39:54441fa8756f
diff -r b146a0a0b894 -r a651c032e2b6 CircularBuf.h
--- a/CircularBuf.h	Sun Apr 29 15:26:52 2018 +0000
+++ b/CircularBuf.h	Sun Apr 29 15:31:27 2018 +0000
@@ -19,15 +19,17 @@
     // 
     /**
     * @param size Size of the buffer.
-    *  Assigns a circular buffer of the diven size.
+    *  Assigns a circular buffer of the fiven size.
     */
     CircularBuf(unsigned int size);
     ~CircularBuf();
     /**
     Pushes data onto the buffer
+    * @param data The array of data to add to the buffer.
+    * @param size The size of the array "data"
     (Adds data to the buffer)
-    // Arguement:
-    * @param data The array of data to add to the buffer.
+     Arguement:/n
+    Data: The array of data to add to the buffer.
     * @param size The size of the array "data"
     *            data, The array of data to add
     *          size, The amount of data in the array