sdp8483 / ESP32-Arduino-CAN

An Arduino CAN-Bus library for ESP32
MIT License
9 stars 4 forks source link

A little bit of lag/delay when gettiing data? #4

Open themagicm opened 4 months ago

themagicm commented 4 months ago

Esp32 1mbit with this library

if (ESP32CAN_OK == ESP32Can.CANReadFrame(&rx_frame)) { /* only print when CAN message is received*/ processdata(rx_frame); }

Seems as though its not as responsive as the Wagner version. Wagner vers doesnt do 1mbit but it does 500k. 500k is really fast but this one reading at 1mbit seems like there is a small delay somewhere?

themagicm commented 4 months ago

Anyone? Definitely some lag/delay. Is there a buffer or something that can be increased to address?