Collin Kidder

Results 243 comments of Collin Kidder

Yeah, sorry, I didn't know the proper repo. I thought the other one would be better just because I think it's a firmware bug not a library issue but I...

Yes, it's a bug. Sometimes very odd colors get set in the DBC file (almost certainly my fault) and then the text will render black on black or gray on...

Well, I'm not sure why that is happening. I hooked up an EVTV CANDue board (one CAN bus) to an EVTV ESP32 CAN board (2 CAN buses, one native to...

Let's say you have a "CAN_FRAME frame;" variable. Then, the syntax to get and set bits is frame.data.bit[34] = 1; where the 34 can be 0-63 and references each bit...

Yes, the file size is going to be pretty large because it outputs as much about the UDS messages as it can. So, some messages expand a lot. As for...

This line you've got in there lets all traffic through: CAN0.watchFor(); //allow everything else through Don't have that line if you want to filter. Instead just keep the line that...

Hmmm, so a different driver working would seem to suggest a problem with my driver. Thus, I'm labeling this a bug. Those errors indicate errors in transmitting bits properly. Are...

I have actually seen this. It should be documented that, for some reason, using a CAN speed of 500k does not work with this library. If you set the CAN...

The CI build uses Visual Studio command line tools, not MinGW. Also, you can easily see all the steps by looking at the CI build script here: https://github.com/collin80/SavvyCAN/blob/master/.github/workflows/build.yml

Well... I've never heard of needing to put your fingers onto the pins to get it working. Are you touching pins 4 and 5 of the ESP32 or the transceiver?...