mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 17:30:01 +03:00

This driver provides support for the Grove GPRS shield, V2: http://www.seeedstudio.com/wiki/GPRS_Shield_V2.0 It provides a simple interface whereby a user can send and receive commands and data from the device. It is controlled by a standardized set of "AT" commands. A full description of these commands is available here: http://www.seeedstudio.com/wiki/images/7/72/AT_Commands_v1.11.pdf Signed-off-by: Jon Trulson <jtrulson@ics.com>
13 lines
204 B
OpenEdge ABL
13 lines
204 B
OpenEdge ABL
%module pyupm_grovegprs
|
|
%include "../upm.i"
|
|
%include "carrays.i"
|
|
%include "std_string.i"
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
%{
|
|
#include "grovegprs.h"
|
|
%}
|
|
%include "grovegprs.h"
|
|
%array_class(char, charArray);
|