summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/bno055/pyupm_bno055.i
blob: 23eead2685f12d215d0a7a14d8da61b117c84971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Include doxygen-generated documentation
%include "pyupm_doxy2swig.i"
%module pyupm_bno055
%include "../upm.i"
%include "cpointer.i"

%include "stdint.i"

/* Send "int *" and "float *" to python as intp and floatp */
%pointer_functions(int, intp);
%pointer_functions(float, floatp);

%feature("autodoc", "3");

#ifdef DOXYGEN
%include "bno055_doc.i"
#endif

%include "bno055.hpp"
%{
    #include "bno055.hpp"
%}