2015-10-15 10:57:36 -07:00
|
|
|
%module javaupm_xbee
|
|
|
|
|
%include "../upm.i"
|
|
|
|
|
%include "carrays.i"
|
|
|
|
|
%include "std_string.i"
|
|
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
#include "xbee.h"
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
%include "xbee.h"
|
|
|
|
|
%array_class(char, charArray);
|
2015-11-23 17:04:32 +02:00
|
|
|
|
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
|
|
|
static {
|
|
|
|
|
try {
|
|
|
|
|
System.loadLibrary("javaupm_xbee");
|
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
|
|
|
System.exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
%}
|