Skip to content

Commit

Permalink
Fix testing phrase CRC calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
stojadin2701 authored and jbinz committed Oct 8, 2023
1 parent 3036b57 commit 4035c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ground_station/src/telemetry/telemetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void Telemetry::initLink() {
}

if (testingPhrase[0] != 0) {
testingCrc = crc32(testingPhrase, strlen((const char*)linkPhrase));
testingCrc = crc32(testingPhrase, strlen((const char*)testingPhrase));
}
}

Expand Down

0 comments on commit 4035c53

Please sign in to comment.