Signed-off-by: Zion Orent <zorent@ics.com> Signed-off-by: Jon Trulson <jtrulson@ics.com> Signed-off-by: Sarah Knepper <sarah.knepper@intel.com>
30 lines
435 B
OpenEdge ABL
30 lines
435 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 "i2clcd.h"
|
|
%{
|
|
#include "i2clcd.h"
|
|
%}
|
|
|
|
%include "jhd1313m1.h"
|
|
%{
|
|
#include "jhd1313m1.h"
|
|
%}
|
|
|
|
%include "lcm1602.h"
|
|
%{
|
|
#include "lcm1602.h"
|
|
%}
|
|
|
|
%include "ssd1327.h"
|
|
%{
|
|
#include "ssd1327.h"
|
|
%}
|