Add initial files

This commit is contained in:
Daniel Öster 2023-02-19 11:22:53 -08:00 committed by GitHub
parent a1fd6fa19f
commit 52254f17c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 47187 additions and 0 deletions

17
Software/ESP32CAN.h Normal file
View 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