sandeepmistry / arduino-CAN

An Arduino library for sending and receiving data using CAN bus.
MIT License
696 stars 237 forks source link

ESP32SJA1000Class::filterExtended mask calculation incorrect #130

Open DaneDuPlooy opened 9 months ago

DaneDuPlooy commented 9 months ago

In ESP32SJA1000Class::filterExtended, the mask calculation should be mask = ~(mask & 0x1FFFFFFF); not mask &= ~(mask & 0x1FFFFFFF);.