clock

Dependencies:   mbed

Revision:
1:013b9fdc4e78
Parent:
0:17e9016529cf
Child:
2:e54d9d87c6cb
diff -r 17e9016529cf -r 013b9fdc4e78 myScope/mybc95.h
--- a/myScope/mybc95.h	Tue May 08 02:13:50 2018 +0000
+++ b/myScope/mybc95.h	Sat May 12 03:03:14 2018 +0000
@@ -7,6 +7,9 @@
 #ifndef mybc95_H
 #define mybc95_H
 
+    #define buf_bc95TxSize 1024
+    #define buf_bc95RxSize 1024
+    
     class bc95Act
     {
         public:
@@ -41,7 +44,9 @@
             static int min;
             static int sec;
 
-            static char buf[50];                                           // receive buffer
+            static char buf[50];                                                    // receive buffer
+            static char buf_bc95Tx[buf_bc95TxSize];                                           // receive buffer
+            static char buf_bc95Rx[buf_bc95RxSize];                                           // receive buffer
    };
    
 #endif