xbee: Initial implementation

This is a basic serial module that allows access to various XBee
devices via a UART port.  It was tested with the XBee S6B WiFi Module
and the XBee S1 802.14.4 module.

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
Jon Trulson
2015-10-15 10:57:36 -07:00
committed by Abhishek Malik
parent 0d2541270e
commit 6e095826d3
10 changed files with 734 additions and 0 deletions

5
src/xbee/CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
set (libname "xbee")
set (libdescription "upm XBee serial module")
set (module_src ${libname}.cxx)
set (module_h ${libname}.h)
upm_module_init()