2015-12-16 13:58:11 -08:00
|
|
|
// Include doxygen-generated documentation
|
|
|
|
|
%include "pyupm_doxy2swig.i"
|
2015-03-24 14:03:15 -06:00
|
|
|
%module pyupm_mhz16
|
|
|
|
|
%include "../upm.i"
|
|
|
|
|
%include "cpointer.i"
|
|
|
|
|
|
|
|
|
|
/* Send "int *" to JavaScript as intp */
|
|
|
|
|
%pointer_functions(int, intp);
|
|
|
|
|
%{
|
2016-04-25 14:27:51 -07:00
|
|
|
#include "mhz16.hpp"
|
2015-03-24 14:03:15 -06:00
|
|
|
speed_t int_B9600 = B9600;
|
|
|
|
|
%}
|
2016-04-25 14:27:51 -07:00
|
|
|
%include "mhz16.hpp"
|
2015-03-24 14:03:15 -06:00
|
|
|
speed_t int_B9600 = B9600;
|