mirror of
https://github.com/eclipse/upm.git
synced 2025-03-25 09:49:59 +03:00
22 lines
411 B
OpenEdge ABL
22 lines
411 B
OpenEdge ABL
![]() |
%module javaupm_ultrasonic
|
||
|
%include "../upm.i"
|
||
|
|
||
|
%ignore signalISR;
|
||
|
|
||
|
%{
|
||
|
#include "ultrasonic.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "ultrasonic.hpp"
|
||
|
|
||
|
%pragma(java) jniclasscode=%{
|
||
|
static {
|
||
|
try {
|
||
|
System.loadLibrary("javaupm_ultrasonic");
|
||
|
} catch (UnsatisfiedLinkError e) {
|
||
|
System.err.println("Native code library failed to load. \n" + e);
|
||
|
System.exit(1);
|
||
|
}
|
||
|
}
|
||
|
%}
|