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.
Xbee.cpp
- Committer:
- Xiaofei
- Date:
- 2015-11-22
- Revision:
- 4:58f5ff5eb15b
- Parent:
- 3:fe623a260bf5
- Child:
- 5:d14636b861ff
File content as of revision 4:58f5ff5eb15b:
#pragma once
#include "Xbee.h"
Xbee::Xbee(PinName tx, PinName rx , PinName rst):_xbee(tx,rx),_rst(rst)
{
_rst = 0;
wait(0.01);
_rst = 1;
wait(0.01);
}
void Xbee::Send(const char* buffer)
{
while(!_xbee.readable())
{
_xbee.puts(buffer);
wait(0.05);
}
}
void Xbee::Recv(char* buffer, const size_t& sz)
{
while(!_xbee.readable());
_xbee.gets(buffer,sz);
_xbee.puts(".");
}