mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-04 10:19:29 +02:00
Add initial files
This commit is contained in:
parent
a1fd6fa19f
commit
52254f17c4
11 changed files with 47187 additions and 0 deletions
17
Software/ESP32CAN.h
Normal file
17
Software/ESP32CAN.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef ESP32CAN_H
|
||||
#define ESP32CAN_H
|
||||
|
||||
#include "CAN_config.h"
|
||||
#include "CAN.h"
|
||||
|
||||
class ESP32CAN
|
||||
{
|
||||
public:
|
||||
int CANInit();
|
||||
int CANConfigFilter(const CAN_filter_t* p_filter);
|
||||
int CANWriteFrame(const CAN_frame_t* p_frame);
|
||||
int CANStop();
|
||||
};
|
||||
|
||||
extern ESP32CAN ESP32Can;
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue