A class for using MU2.

Dependents:   EM_Mission FM_integration_copy FM_integration_off FM_integration

Revision:
2:2297b491e452
Parent:
1:c60752b4acb9
Child:
3:9f98138ed0c4
--- a/MU2Class.h	Sat Jul 06 06:19:08 2013 +0000
+++ b/MU2Class.h	Sat Jul 06 07:29:39 2013 +0000
@@ -7,9 +7,11 @@
 public:
     MU2Class(PinName tx,PinName rx); //define pins for communication from CanSat
     void send(char Send_Message[]); //a method for sending data from CanSat to PC
+    void send(int Send_Message[]); //overload the send(char)method
 
 private:
     uint8_t Store_Str(char data_str[], int index, char Message[]);
+    /*uint8_t Store_Int(int data_int[], int index, int Message[]);*/
     PinName _tx; //tx pin name which connected to mbed
     PinName _rx; //rx pin name which connected to mbed
 };