mirror of
https://github.com/eclipse/upm.git
synced 2025-03-18 22:47:28 +03:00

Signed-off-by: Zion Orent <zorent@ics.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
36 lines
505 B
OpenEdge ABL
36 lines
505 B
OpenEdge ABL
%module jsupm_i2clcd
|
|
%include "../upm.i"
|
|
%include "../carrays_uint8_t.i"
|
|
|
|
%typemap(in) uint8_t * {
|
|
void *argp = 0 ;
|
|
int res = SWIG_ConvertPtr($input, &argp,SWIGTYPE_p_uint8Array, 0 | 0 );
|
|
$1 = (uint8_t *)(argp);
|
|
}
|
|
|
|
%include "ssd.h"
|
|
%include "i2clcd.h"
|
|
%{
|
|
#include "i2clcd.h"
|
|
%}
|
|
|
|
%include "jhd1313m1.h"
|
|
%{
|
|
#include "jhd1313m1.h"
|
|
%}
|
|
|
|
%include "lcm1602.h"
|
|
%{
|
|
#include "lcm1602.h"
|
|
%}
|
|
|
|
%include "ssd1327.h"
|
|
%{
|
|
#include "ssd1327.h"
|
|
%}
|
|
|
|
%include "ssd1308.h"
|
|
%{
|
|
#include "ssd1308.h"
|
|
%}
|