cansat

Dependencies:   DHT SCP1000 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers xbee.h Source File

xbee.h

00001 /**********XBEE intialization file**************/
00002 Serial pc(USBTX, USBRX); 
00003 Serial xbee(p9,p10);        //xbee pin assignment
00004 DigitalOut rst1(p11);       //xbee reset pin
00005 /***********************************************/
00006 void xbeeInit(int baud){
00007     pc.baud(baud);
00008     xbee.baud(baud);
00009     }
00010 /***********************************************/    
00011