mirror of
https://github.com/eclipse/upm.git
synced 2025-03-22 16:37:29 +03:00
33 lines
473 B
OpenEdge ABL
33 lines
473 B
OpenEdge ABL
![]() |
%module jsupm_bmx055
|
||
|
%include "../upm.i"
|
||
|
%include "cpointer.i"
|
||
|
|
||
|
/* Send "int *" and "float *" to JavaScript as intp and floatp */
|
||
|
%pointer_functions(int, intp);
|
||
|
%pointer_functions(float, floatp);
|
||
|
|
||
|
%include "bma250e.hpp"
|
||
|
%{
|
||
|
#include "bma250e.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "bmm150.hpp"
|
||
|
%{
|
||
|
#include "bmm150.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "bmx055.hpp"
|
||
|
%{
|
||
|
#include "bmx055.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "bmc150.hpp"
|
||
|
%{
|
||
|
#include "bmc150.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "bmi055.hpp"
|
||
|
%{
|
||
|
#include "bmi055.hpp"
|
||
|
%}
|