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
Problem: If you load v3.9 and attempt to firmware update to v3.10, it says it's up to date.
RTK Firmware uses a Major/Minor semantic versioning system.
The current firmware update method is doing a blind
if x > y then firmware is newer
This is bad because
3.9 > 3.11
Which in terms of versioning, is wrong. v3.11 is newer than v3.9. We should be comparing major/minor versions separately, not as a float.
Users who are using a lower version will have to use the GUI or CLI methods to get to v3.11 where the fix will be in place.
The text was updated successfully, but these errors were encountered:
Increase major version number
f03c487
It's time, and will fix #742
59f79f9
Fixed in v4.0. If you've got an older firmware version, you'll be able to get to v4.0.
Sorry, something went wrong.
No branches or pull requests
Problem: If you load v3.9 and attempt to firmware update to v3.10, it says it's up to date.
RTK Firmware uses a Major/Minor semantic versioning system.
The current firmware update method is doing a blind
This is bad because
Which in terms of versioning, is wrong. v3.11 is newer than v3.9. We should be comparing major/minor versions separately, not as a float.
Users who are using a lower version will have to use the GUI or CLI methods to get to v3.11 where the fix will be in place.The text was updated successfully, but these errors were encountered: