hmc5883l: Modifications to js swig file

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>
This commit is contained in:
Zion Orent 2015-01-15 14:24:22 -08:00 committed by Sarah Knepper
parent 496cd1c632
commit f00de88f97

View File

@ -1,8 +1,14 @@
%module jsupm_hmc5883l
%include "../upm.i"
%include "../carrays_int16_t.i"
%{
#include "hmc5883l.h"
%}
// Adding this typemap because SWIG is converting int16 into a short by default
// This forces SWIG to convert it correctly
%typemap(out) int16_t* {
$result = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int16Array, 0 | 0 );
}
%include "hmc5883l.h"