mirror of
https://github.com/eclipse/upm.git
synced 2025-03-25 17:59:59 +03:00

This driver was developed using an SX1276 based shield on the Galileo G2. It requires 3.3v of operation. It does not work with Edison, due to SPI issues. Signed-off-by: Jon Trulson <jtrulson@ics.com>
16 lines
199 B
OpenEdge ABL
16 lines
199 B
OpenEdge ABL
%module pyupm_sx1276
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
|
|
%include "stdint.i"
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
%pointer_functions(float, floatp);
|
|
|
|
%include "sx1276.h"
|
|
%{
|
|
#include "sx1276.h"
|
|
%}
|
|
|