mirror of
https://github.com/eclipse/upm.git
synced 2025-03-23 17:00:03 +03:00

The mcp2515 is a CAN bus controller. It was developed using the Seeed CAN bus shield. Signed-off-by: Jon Trulson <jtrulson@ics.com>
20 lines
359 B
OpenEdge ABL
20 lines
359 B
OpenEdge ABL
// Include doxygen-generated documentation
|
|
%include "pyupm_doxy2swig.i"
|
|
%module pyupm_mcp2515
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
%include "std_string.i"
|
|
%include "../carrays_uint8_t.i"
|
|
|
|
%include "stdint.i"
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
%pointer_functions(float, floatp);
|
|
|
|
%include "mcp2515_regs.h"
|
|
%include "mcp2515.hpp"
|
|
%{
|
|
#include "mcp2515.hpp"
|
|
%}
|