Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of xbee_api by
xbee.cpp
- Committer:
- tristanjph
- Date:
- 2012-08-29
- Revision:
- 2:cb627ea9b817
- Parent:
- 1:c3d9bdcb0b03
- Child:
- 3:682615a0717e
File content as of revision 2:cb627ea9b817:
#include "xbee.h"
xbee::xbee(PinName tx, PinName rx)
{
_tx = tx;
_rx = rx;
}
xbee::~xbee()
{
}
int xbee::ConfigMode()
{
int a;
Serial DATA(_tx,_rx);
wait(2);
DATA.printf("+++");
while (a != 75) {
if (DATA.readable()) {
a = DATA.getc();
}
}
wait(1);
printf("config mode\n");
return 1;
}
int xbee::GetSerial(int *serial_no)
{
int sh1,sh2,sh3,sl1,sl2,sl3,sl4;
Serial DATA(_tx,_rx);
wait_ms(50);
DATA.printf("ATSL \r");
DATA.scanf ("%2x%2x%2x%2x",&sl1,&sl2,&sl3,&sl4);
wait_ms(500);
DATA.printf("ATSH \r");
DATA.scanf ("%2x%2x%2x",&sh1,&sh2,&sh3);
serial_no[0] = sh1;
serial_no[1] = sh2;
serial_no[2] = sh3;
serial_no[3] = sl1;
serial_no[4] = sl2;
serial_no[5] = sl3;
serial_no[6] = sl4;
return 1;
}
int xbee::SetKey(char* key)
{
Serial DATA(_tx,_rx);
DATA.printf("ATEE 1 \r");
DATA.scanf ("%*s");
wait_ms(1);
DATA.printf("ATKY %s \r",key);
DATA.scanf ("%*s");
return 1;
}
int xbee::WriteSettings()
{
Serial DATA(_tx,_rx);
wait_ms(5);
DATA.printf("ATWR \r");
DATA.scanf ("%*s");
return 1;
}
int xbee::ExitConfigMode()
{
Serial DATA(_tx,_rx);
wait_ms(5);
DATA.printf("ATCN \r");
DATA.scanf ("%*s");
return 1;
}
int xbee::SendData(char *data_buf)
{
Serial DATA(_tx,_rx);
DATA.printf("%s",data_buf);
return 1;
}
void xbee::RecieveData(char *data_buf, int numchar)
{
int count=0;
if(numchar == 0) {
numchar = sizeof(data_buf);
}
Serial DATA(_tx,_rx);
while(numchar!=count) {
if(DATA.readable()) {
*data_buf = DATA.getc();
data_buf+=1; count++;
}
}
}
int xbee::SetPanId(int pan_id)
{
Serial DATA(_tx,_rx);
wait_ms(5);
DATA.printf("ATID %i\r",pan_id);
DATA.scanf ("%*s");
return 1;
}
