0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00
This commit is contained in:
2025-05-17 20:54:50 +02:00
parent 24c6151088
commit e488873638

View File

@@ -238,7 +238,7 @@ int main(int argc, char *argv[]) {
// This means either this is our first packet, if it is we'll sync to the sender and if it isn't we'll set to 0 from 0
vban_frame = data.packet_data.frame_num;
} else {
uint32_t expected_frame = vban_frame++;
uint32_t expected_frame = (vban_frame++) + 1;
if (data.packet_data.frame_num != expected_frame) {
if (data.packet_data.frame_num > expected_frame) {