mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 09:20:39 +03:00

The director now uses a GlobalRef instead of a WeakRef to the IsrCallback object Signed-off-by: Petre Eftime <petre.p.eftime@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
50 lines
1.1 KiB
OpenEdge ABL
50 lines
1.1 KiB
OpenEdge ABL
%module(directors="1") javaupm_mpu9150
|
|
%include "../upm.i"
|
|
%include "typemaps.i"
|
|
%include "arrays_java.i"
|
|
%include "../java_buffer.i"
|
|
|
|
%feature("director") IsrCallback;
|
|
SWIG_DIRECTOR_OWNED(IsrCallback)
|
|
%ignore generic_callback_isr;
|
|
%include "../IsrCallback.h"
|
|
|
|
%apply int {mraa::Edge};
|
|
|
|
%{
|
|
#include "mpu60x0.h"
|
|
#include "mpu9150.h"
|
|
%}
|
|
|
|
|
|
%typemap(jni) float * "jfloatArray"
|
|
%typemap(jstype) float * "float[]"
|
|
%typemap(jtype) float * "float[]"
|
|
|
|
%typemap(javaout) float * {
|
|
return $jnicall;
|
|
}
|
|
|
|
%typemap(out) float * {
|
|
$result = JCALL1(NewFloatArray, jenv, 3);
|
|
JCALL4(SetFloatArrayRegion, jenv, $result, 0, 3, $1);
|
|
delete [] $1;
|
|
}
|
|
|
|
%ignore getAccelerometer(float *, float *, float *);
|
|
%ignore getGyroscope(float *, float *, float *);
|
|
%ignore getMagnetometer(float *, float *, float *);
|
|
|
|
%include "mpu60x0.h"
|
|
%include "mpu9150.h"
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_mpu9150");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%} |