arduino-CAN
arduino-CAN copied to clipboard
An Arduino library for sending and receiving data using CAN bus.
Great libraries. But it doesn't support MCP-2515 for ESP32. Not complaining one bit. But I was a little confused at first. And wanted to leave a note for others. MCP-2515...
Hello sir, Im trying to receive the data from jeep compass ecu. Using the Can_receiver sample program we are getting different data. Im trying the engine rpm example code. ~~~...
### - always shows Guru Meditation Error: Core 1 panic'ed when trying to send CAN MESSAGE inside the onReceive function### ``(InstrFetchProhibited). here is the onReceive method: ``` void onReceive(int packetSize)...
Unfortunately RTR messages are not handled correctly. If you look at ``` void MCP2515Class::handleInterrupt() { if (readRegister(REG_CANINTF) == 0) { return; } while (parsePacket()) { _onReceive(available()); } } ``` you...
i am using esp32 with arduino and my device gets can msg repeatedly after some several hours of run. parallely my another task is also running but it is getting...
Allows for improved performance when accessing the entire payload rathrer than copying byte-by-byte with the Stream API.
Packets with DLC=0 are reported in the same way as if no packet has been received. As the CAN standard allows packets with DLC=0, I have changed the behaviour of...
Hello I am trying to communicate Arduino Nano to ESP32 using sv65hvd230 module but it is not working nothing showing that the point where i am stuck i dont know...
Once configured for loopback mode, what is the proper way to restore normal mode? For the moment, I used CAN.filter(0x00); since it resets the mode back to normal but can...
for esp32 chips with version V3 you need to change Update ESP32SJA1000.cpp writeRegister(REG_IER, 0xef); // enable all interrupts like this