FlexCAN_Library icon indicating copy to clipboard operation
FlexCAN_Library copied to clipboard

Cannot receive extended CAN messenges

Open power-max opened this issue 5 years ago • 1 comments

No extended CAN messages will come through even when the relevant fields are set. The pawelsky library is more usable in this regard.

power-max avatar Mar 24 '19 02:03 power-max

By default the filter initializes such that it filters out extended frames. This solved my problems. CAN_filter_t filter; filter.flags.extended = 1; Can0.begin(500000, filter);

Kython89 avatar Mar 16 '21 17:03 Kython89