Closed gurgelmb closed 3 years ago
when try to transmit messages with blocksize higher then 16 it failes, because it waits for fc frame which will never come. Change line 378 in iso-tp.cpp to:
if (msg->blocksize < 16) msg->seq_id %= 16; else msg->seq_id %= msg->blocksize;
lol this needs to be PR'd to master. it's a deadlock otherwise
when try to transmit messages with blocksize higher then 16 it failes, because it waits for fc frame which will never come. Change line 378 in iso-tp.cpp to:
if (msg->blocksize < 16) msg->seq_id %= 16; else msg->seq_id %= msg->blocksize;