cansat

Dependencies:   CANSAT_COMBINED

Fork of Xbee_Hello_world_A by Tristan Hughes

Revision:
1:1054e130270c
Parent:
0:9cbddcc86466
--- a/main.cpp	Fri Aug 31 14:46:32 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#include "mbed.h"
-#include "xbee.h"
-
-xbee xbee1(p9,p10,p11); //Initalise xbee_lib
-Serial pc(USBTX, USBRX); //Initalise PC serial comms
-
-int main()
-{
-    char send_data[202]; //Xbee buffer size is 202 bytes
-    char read_data[202]; //Xbee buffer size is 202 bytes
-
-    while(1) {
-        pc.scanf("%s",send_data); //Read data from serial console
-        xbee1.SendData(send_data); //Send data to XBee
-        xbee1.RecieveData(read_data,0); //Read data from the XBee
-        pc.printf("You said:%s",read_data);
-    }
-}