Hi Guys,
thank you for allow me to joiny this board.
I used a Atmel Start Project with CAN Bus. Every think works fine. The only problem is if I configure a mask for extended filter non msg will fire the RxCallbak.
filter.id = 0x07000000; filter.mask = 0x1F000000; can_async_set_filter(&CAN_0, 0, CAN_FMT_EXTID, &filter);
change to
filter.id = 0x07000000; filter.mask = 0x00; can_async_set_filter(&CAN_0, 0, CAN_FMT_EXTID, &filter);
I get every EXTD msg.
I searching now for 3 hours on that problem please help me to find my mistake.
Thanks