diff options
Diffstat (limited to 'can_mcp2515.h')
-rw-r--r-- | can_mcp2515.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/can_mcp2515.h b/can_mcp2515.h new file mode 100644 index 0000000..618051e --- /dev/null +++ b/can_mcp2515.h @@ -0,0 +1,14 @@ +#include <avr/io.h> +#include <avr/interrupt.h> +#include <stdio.h> + +#include "spi.h" + +#ifndef _IOE_CAN_MCP2515_H_ +#define _IOE_CAN_MCP2515_H_ +#ifdef CONFIG_IOE_CAN_MCP2515 + +void can_mcp2515_init(void); + +#endif /* CONFIG_IOE_CAN_MCP2515 */ +#endif /* _IOE_CAN_MCP2515_H_ */ |