mirror of
https://github.com/eclipse/upm.git
synced 2025-07-02 01:41:12 +03:00

There is a single monolithic .i file which provides documentation for the python methods. The per-sensor flow is not used. Removing for now, may investigate implementing a per-sensor doc.i file again in the future. Signed-off-by: Noel Eck <noel.eck@intel.com>
16 lines
348 B
OpenEdge ABL
16 lines
348 B
OpenEdge ABL
// Include doxygen-generated documentation
|
|
%include "pyupm_doxy2swig.i"
|
|
%module pyupm_mma7660
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
|
|
/* Send "int *" and "float *" to python as intp and floatp */
|
|
%pointer_functions(int, intp);
|
|
%pointer_functions(float, floatp);
|
|
|
|
%include "mma7660_regs.h"
|
|
%include "mma7660.hpp"
|
|
%{
|
|
#include "mma7660.hpp"
|
|
%}
|