mirror of
https://github.com/eclipse/upm.git
synced 2025-03-20 15:37:28 +03:00

Signed-off-by: Marc Graham <marc@m2ag.net> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
46 lines
1.1 KiB
OpenEdge ABL
46 lines
1.1 KiB
OpenEdge ABL
%module javaupm_i2clcd
|
|
%include "../upm.i"
|
|
%include "stdint.i"
|
|
%include "typemaps.i"
|
|
%include "arrays_java.i";
|
|
|
|
%apply signed char[] {uint8_t []};
|
|
%ignore BasicFont;
|
|
|
|
%typemap(jni) (uint8_t *data, int bytes) "jbyteArray";
|
|
%typemap(jtype) (uint8_t *data, int bytes) "byte[]";
|
|
%typemap(jstype) (uint8_t *data, int bytes) "byte[]";
|
|
|
|
%typemap(javain) (uint8_t *data, int bytes) "$javainput";
|
|
|
|
%typemap(in) (uint8_t *data, int bytes) {
|
|
$1 = (uint8_t *) JCALL2(GetByteArrayElements, jenv, $input, NULL);
|
|
$2 = JCALL1(GetArrayLength, jenv, $input);
|
|
}
|
|
|
|
%typemap(freearg) (uint8_t *data, int bytes) {
|
|
JCALL3(ReleaseByteArrayElements, jenv, $input, (jbyte *)$1, 0);
|
|
}
|
|
|
|
%{
|
|
#include "lcd.h"
|
|
#include "ssd.h"
|
|
#include "ssd1327.h"
|
|
#include "ssd1308.h"
|
|
#include "ssd1306.h"
|
|
#include "eboled.h"
|
|
#include "lcm1602.h"
|
|
#include "jhd1313m1.h"
|
|
#include "sainsmartks.h"
|
|
%}
|
|
|
|
%include "lcd.h"
|
|
%include "ssd.h"
|
|
%include "ssd1327.h"
|
|
%include "ssd1308.h"
|
|
%include "ssd1306.h"
|
|
%include "eboled.h"
|
|
%include "lcm1602.h"
|
|
%include "jhd1313m1.h"
|
|
%include "sainsmartks.h"
|