summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/mhz16/javaupm_mhz16.i
blob: c2735a345baf29f2ac1aedacbc86782b90c03409 (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
27
%module javaupm_mhz16
%include "../upm.i"
%include "cpointer.i"
%include "typemaps.i"
%include "arrays_java.i";
%include "../java_buffer.i"

%apply int *OUTPUT { int *gas, int *temp };

%{
    #include "mhz16.h"
    speed_t int_B9600 = B9600;
%}

%include "mhz16.h"
speed_t int_B9600 = B9600;

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