summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/ads1x15/javaupm_ads1x15.i
blob: e16dc4e8c71f2ffb03510d3bc808b9e5787210b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
%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);
        }
    }
%}