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
Given this test file here, we would expect these frames (5, 6, 7, 13, 14, and 15) to show as Standard Frames and all others in the test log to show as Extended Frames (given that their IDs are greater than 0x7FF).
In the framefileio.cpp file, under bool FrameFileIO::loadPCANFile( we see that an extended frame is only set when the 29th bit of the ID is equal to 1.
Given this test file here, we would expect these frames (5, 6, 7, 13, 14, and 15) to show as Standard Frames and all others in the test log to show as Extended Frames (given that their IDs are greater than 0x7FF).
In the
framefileio.cpp
file, underbool FrameFileIO::loadPCANFile(
we see that an extended frame is only set when the 29th bit of the ID is equal to 1.Instead the first line of the detection should be:
if (thisFrame.frameId() > 0x7FF)
This issue is seen on lines 1443, 1495, 1537, and 1589 on Release V213.
SavvyCAN_TestLog.trc.txt
The text was updated successfully, but these errors were encountered: