2015-08-27 16:57:16 -06:00
|
|
|
%module javaupm_wheelencoder
|
|
|
|
|
%include "../upm.i"
|
|
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
#include "wheelencoder.h"
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
%include "wheelencoder.h"
|
2015-11-23 17:04:32 +02:00
|
|
|
|
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
|
|
|
static {
|
|
|
|
|
try {
|
|
|
|
|
System.loadLibrary("javaupm_wheelencoder");
|
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
|
|
|
System.exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
%}
|