uint8_t型とunsigned char型に対応した多バイトシリアル通信用ライブラリ

Dependents:   multiserial_test serial_check_controller receiverA receiver_transmitter ... more

Files at this revision

API Documentation at this revision

Comitter:
bousiya03
Date:
Tue Mar 10 09:46:18 2015 +0000
Parent:
28:7620ef9e7187
Child:
30:f2f3c3d6a6be
Commit message:
fix bug

Changed in this revision

MultiSerial.cpp Show annotated file Show diff for this revision Revisions of this file
MultiSerial.h Show annotated file Show diff for this revision Revisions of this file
--- a/MultiSerial.cpp	Wed Oct 15 12:29:41 2014 +0000
+++ b/MultiSerial.cpp	Tue Mar 10 09:46:18 2015 +0000
@@ -34,18 +34,18 @@
             
             }
 
-        void MultiSerial::read_data(uint8_t* readData,uint8_t readKey){
+        void MultiSerial::read_data(uint8_t* readData,uint8_t readKey,int readSize){
 
             __readData = readData;
-            __readSize = __SIZE(__readData);
+            __readSize = readSize;
             __readKey = readKey;
         }
 
 
-        void MultiSerial::write_data(uint8_t* writeData,uint8_t writeKey){
+        void MultiSerial::write_data(uint8_t* writeData,uint8_t writeKey,int writeSIze){
 
             __writeData = writeData;
-            __writeSize = __SIZE(__writeData);
+            __writeSize = writeSize;
             __writeKey = writeKey;
         }
 
--- a/MultiSerial.h	Wed Oct 15 12:29:41 2014 +0000
+++ b/MultiSerial.h	Tue Mar 10 09:46:18 2015 +0000
@@ -8,10 +8,8 @@
 
 #include "mbed.h"
 
-#define __SIZE(array) (sizeof(array) / sizeof(array[0]))
-
 #define MAX_DATA_NUM 10
-#define KEY 0//number of first data
+#define KEY 0 //number of first data
 
 /** 多バイト通信用クラス 
  *
@@ -28,8 +26,8 @@
  *
  * int main(){
  *    
- * send.write(send_data,0x0A);
- * get.read(get_data,0x0A);
+ * send.write(send_data,0x0A,2);
+ * get.read(get_data,0x0A,2);
  * for(int i=1;;i++){
  *    
  *       check = get_data[i];