summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/max31855/javaupm_max31855.i
blob: a778d370c953d66b49e5845f9bff5c0596f9ed95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! [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);
        }
    }
%}