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

11
src/xbee/jsupm_xbee.i Normal file
View File

@ -0,0 +1,11 @@
%module jsupm_xbee
%include "../upm.i"
%include "carrays.i"
%include "std_string.i"
%{
#include "xbee.h"
%}
%include "xbee.h"
%array_class(char, charArray);