2015-08-05 19:43:31 +03:00
|
|
|
%module javaupm_lsm303
|
|
|
|
|
%include "../upm.i"
|
|
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
#include "lsm303.h"
|
|
|
|
|
%}
|
|
|
|
|
|
2015-11-03 17:40:37 +02:00
|
|
|
%typemap(jni) int16_t* "jshortArray"
|
|
|
|
|
%typemap(jstype) int16_t* "short[]"
|
|
|
|
|
%typemap(jtype) int16_t* "short[]"
|
2015-08-05 19:43:31 +03:00
|
|
|
|
|
|
|
|
%typemap(javaout) int16_t* {
|
|
|
|
|
return $jnicall;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%typemap(out) int16_t *getRawAccelData {
|
2015-11-03 17:40:37 +02:00
|
|
|
$result = JCALL1(NewShortArray, jenv, 3);
|
|
|
|
|
JCALL4(SetShortArrayRegion, jenv, $result, 0, 3, (jshort*)$1);
|
2015-08-05 19:43:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%include "lsm303.h"
|
2015-11-23 17:04:32 +02:00
|
|
|
|
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
|
|
|
static {
|
|
|
|
|
try {
|
|
|
|
|
System.loadLibrary("javaupm_lsm303");
|
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
|
|
|
System.exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
%}
|