mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 09:20:39 +03:00

Signed-off-by: Bogdan Ichim <bogdan.ichim@rinftech.com> Signed-off-by: Stefan Andritoiu <stefan.andritoiu@gmail.com>
31 lines
604 B
OpenEdge ABL
31 lines
604 B
OpenEdge ABL
%module javaupm_ads1x15
|
|
%include "../upm.i"
|
|
%include "typemaps.i"
|
|
|
|
%import "../interfaces/javaupm_iADC.i"
|
|
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_interfaces.*;
|
|
%}
|
|
|
|
%{
|
|
#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);
|
|
}
|
|
}
|
|
%}
|