blob: a778d370c953d66b49e5845f9bff5c0596f9ed95 [file] [log] [blame]
//! [Interesting]
%module javaupm_max31855
%include "../upm.i"
%{
#include "max31855.h"
%}
%include "max31855.h"
//! [Interesting]
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_max31855");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}