Files
upm/src/ads1x15/javaupm_ads1x15.i

26 lines
502 B
OpenEdge ABL
Raw Normal View History

%module javaupm_ads1x15
%include "../upm.i"
%include "typemaps.i"
%{
#include "ads1x15.hpp"
#include "ads1015.hpp"
#include "ads1115.hpp"
%}
%include "ads1x15.hpp"
%include "ads1015.hpp"
%include "ads1115.hpp"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_ads1x15");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}