Driver for the JY-MCU v1.06 HC-06 Bluetooth module.

Dependents:   DISCO-F746NG_rtos_test MbedTableControl

Revision:
21:cce827364df1
Parent:
20:13283edd1aba
--- a/HC06Bluetooth.h	Mon Aug 08 15:03:13 2016 -0400
+++ b/HC06Bluetooth.h	Mon Aug 08 19:48:19 2016 -0400
@@ -76,7 +76,7 @@
     void (*lineCallbackFunc) (const char*, size_t strlen);
     /// Pointer to a callback function the client provides when a character is received.
     void (*charCallbackFunc) (char);
-    std::queue<char> dataReceivedBuffer;
+    Queue<char, 64> dataReceivedBuffer;
     std::queue<char> dataReceivedBufferCopy;
     std::vector<char> dataReceivedToClient;
 };