Implemented Low Level Compunications

This commit is contained in:
AlexanderHD27
2024-10-14 09:19:00 +02:00
parent 7eebf619ae
commit b150a905a3
15 changed files with 645 additions and 60 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
class MCP2515 {
private:
public:
uint8_t get_TransmitErrorCounter();
uint8_t get_ReceiveErrorCounter();
};