2018-01-26 11:52:34 -08:00
|
|
|
%include "../common_top.i"
|
2015-08-05 19:43:31 +03:00
|
|
|
|
2018-01-26 11:52:34 -08:00
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
|
|
#ifdef SWIGJAVA
|
2015-08-14 14:37:02 +03:00
|
|
|
%apply int *OUTPUT { int *xVal, int *yVal, int *zVal };
|
|
|
|
%apply float *OUTPUT { float *xAccel, float *yAccel, float *zAccel };
|
2015-08-05 19:43:31 +03:00
|
|
|
|
2015-08-26 18:27:48 +03:00
|
|
|
%typemap(jni) float* "jfloatArray"
|
|
|
|
%typemap(jstype) float* "float[]"
|
|
|
|
%typemap(jtype) float* "float[]"
|
|
|
|
|
|
|
|
%typemap(javaout) float* {
|
|
|
|
return $jnicall;
|
|
|
|
}
|
|
|
|
|
|
|
|
%typemap(out) float *acceleration {
|
|
|
|
$result = JCALL1(NewFloatArray, jenv, 3);
|
|
|
|
JCALL4(SetFloatArrayRegion, jenv, $result, 0, 3, $1);
|
|
|
|
}
|
|
|
|
|
|
|
|
%typemap(jni) int* "jintArray"
|
|
|
|
%typemap(jstype) int* "int[]"
|
|
|
|
%typemap(jtype) int* "int[]"
|
|
|
|
|
|
|
|
%typemap(javaout) int* {
|
|
|
|
return $jnicall;
|
|
|
|
}
|
|
|
|
|
|
|
|
%typemap(out) int *values {
|
|
|
|
$result = JCALL1(NewIntArray, jenv, 3);
|
|
|
|
JCALL4(SetIntArrayRegion, jenv, $result, 0, 3, (const signed int*)$1);
|
|
|
|
delete [] $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
%ignore values(int *, int *, int *);
|
|
|
|
%ignore acceleration(float *, float *, float *);
|
|
|
|
|
2018-01-26 11:52:34 -08:00
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_adxl335)
|
|
|
|
#endif
|
|
|
|
/* END Java syntax */
|
|
|
|
|
|
|
|
/* BEGIN Javascript syntax ------------------------------------------------- */
|
|
|
|
#ifdef SWIGJAVASCRIPT
|
|
|
|
%pointer_functions(int, intp);
|
|
|
|
%pointer_functions(float, floatp);
|
|
|
|
#endif
|
|
|
|
/* END Javascript syntax */
|
|
|
|
|
|
|
|
/* BEGIN Python syntax ----------------------------------------------------- */
|
|
|
|
#ifdef SWIGPYTHON
|
|
|
|
%pointer_functions(int, intp);
|
|
|
|
%pointer_functions(float, floatp);
|
|
|
|
#endif
|
|
|
|
/* END Python syntax */
|
|
|
|
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
|
|
%{
|
|
|
|
#include "adxl335.hpp"
|
|
|
|
%}
|
2016-04-25 14:27:51 -07:00
|
|
|
%include "adxl335.hpp"
|
2018-01-26 11:52:34 -08:00
|
|
|
/* END Common SWIG syntax */
|