arduino-CAN icon indicating copy to clipboard operation
arduino-CAN copied to clipboard

An Arduino library for sending and receiving data using CAN bus.

Results 80 arduino-CAN issues
Sort by recently updated
recently updated
newest added

There does not seem to be a way to create more than a single instance of the CAN object.

I was recently attempting to use a CAN board designed for a Raspi ([Waveshare's CAN Hat](https://www.waveshare.com/rs485-can-hat.htm)) with this library, but it has a 12MHz crystal attached to the MCP2515. I...

For some reason around about the time I switched to an RTOS system I have to call CAN.begin(1000E3) to get it to work at 500kbs. Does anyone have any idea...

This code is a little rough, I think the best would be to calculate BRP and compare if it's too big then use the divider. But in the original codes...

Hi @sandeepmistry, I was just wondering if any thought has been given to updating the ESP32 support to call the [ESP-IDF TWAI driver](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/twai.html) API instead. Calling the ESP-IDF driver will...

Tried the basic receive example after trying the OBD keystats example with no success. Seems to be getting valid data from the bus - but keeps printing the same packet...

Hello, it seems that these lines // wait for TX buffer to free while ((readRegister(REG_SR) & 0x04) != 0x04) { yield(); } and // wait for TX complete while ((readRegister(REG_SR)...

Would it be possible to modify this library to support the ESP32-C3 microcontroller? It has the same CAN controller (SJA1000) as the other ESP32s, but a different, RISC-V based microcontroller....

The #include "esp_intr.h" depreciated and should be replaced by #include "esp_intr_alloc.h"

Hello, I am not sure what to say here... on the examples in the repo, they compile fine. Once you select the RP2040 board, broken. wont compile. Says CAN is...