You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in lin.cpp, line 124 should be exchanged to accomplish this automatically:
// LIN diagnostic frame shall always use CHKSUM of protocol version 1.
uint8_t cksum = dataChecksum(message, nBytes, (proto == 1 || addr == 0x3C) ? 0 : addrbyte);
Line 182 accordingly ;-):
// LIN diagnostic frame shall always use CHKSUM of protocol version 1.
if (proto == 1 || addr == 0x3D) idByte = 0; // Don't cksum the ID byte in LIN 1.x
The text was updated successfully, but these errors were encountered:
in lin.cpp, line 124 should be exchanged to accomplish this automatically:
Line 182 accordingly ;-):
The text was updated successfully, but these errors were encountered: