2015-01-30 18:43:10 -07:00
|
|
|
%module jsupm_mma7660
|
|
|
|
|
%include "../upm.i"
|
|
|
|
|
%include "cpointer.i"
|
|
|
|
|
|
|
|
|
|
/* Send "int *" and "float *" to JavaScript as intp and floatp */
|
|
|
|
|
%pointer_functions(int, intp);
|
|
|
|
|
%pointer_functions(float, floatp);
|
|
|
|
|
|
2016-10-27 15:12:26 -06:00
|
|
|
%include "mma7660_regs.h"
|
|
|
|
|
%include "mma7660.hpp"
|
2015-01-30 18:43:10 -07:00
|
|
|
%{
|
2016-04-25 14:27:51 -07:00
|
|
|
#include "mma7660.hpp"
|
2015-01-30 18:43:10 -07:00
|
|
|
%}
|
|
|
|
|
|