This module implements support for the Grove BLE (Bluetooth Low Energy) device. It is implemented as a UART device accepting an "AT" command set. Signed-off-by: Jon Trulson <jtrulson@ics.com> Signed-off-by: Zion Orent <zorent@ics.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
14 lines
223 B
OpenEdge ABL
14 lines
223 B
OpenEdge ABL
%module pyupm_hm11
|
|
%include "../upm.i"
|
|
%include "carrays.i"
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
%{
|
|
#include "hm11.h"
|
|
speed_t int_B9600 = B9600;
|
|
%}
|
|
%include "hm11.h"
|
|
speed_t int_B9600 = B9600;
|
|
%array_class(char, charArray);
|