We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
serum_decode.cpp function Identify_Frame line 919 if (first_match || ti != lastfound || mask < 255)
Condition is met for each frame with a mask. And what about the sequence: Ex. lastfound = ID5
Hashc == hashcodes[ti] Frame 1 ID = 99 , Crc=0XAA55AA55 frame with mask no. 7, full CRC = 0x12341234
So ti != lastfound Now last_found = ID99 lastframe_full_crc= 0x12341234 ti != lastfound function return ti
Frame 2. same as Frame 1 so ti == lastfound but mask< 255 function return ti and in this case the function should return IDENTIFY_SAME_FRAME
Am I interpreting this wrong?
The text was updated successfully, but these errors were encountered:
Thanks, I removed it, will test it and then merge.
Sorry, something went wrong.
No branches or pull requests
serum_decode.cpp
function Identify_Frame line 919
if (first_match || ti != lastfound || mask < 255)
Condition is met for each frame with a mask.
And what about the sequence:
Ex. lastfound = ID5
Hashc == hashcodes[ti]
Frame 1 ID = 99 , Crc=0XAA55AA55 frame with mask no. 7, full CRC = 0x12341234
So ti != lastfound
Now last_found = ID99 lastframe_full_crc= 0x12341234
ti != lastfound function return ti
Frame 2. same as Frame 1
so ti == lastfound but mask< 255
function return ti
and in this case the function should return IDENTIFY_SAME_FRAME
Am I interpreting this wrong?
The text was updated successfully, but these errors were encountered: