blob: 618051eab2920710cc20ca701299809045bdef24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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_ */
|