summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/otp538u/javaupm_otp538u.i
blob: 90703b891bb0d08f8584a9744c9d1e3e465253c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%module javaupm_otp538u
%include "../upm.i"

%{
    #include "otp538u.h"
%}

%include "otp538u.h"

%pragma(java) jniclasscode=%{
    static {
        try {
            System.loadLibrary("javaupm_otp538u");
        } catch (UnsatisfiedLinkError e) {
            System.err.println("Native code library failed to load. \n" + e);
            System.exit(1);
        }
    }
%}