1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

Fix debug GPS_DOP (#11956)

Forgot to add `GPS_DOP` to the end of `debugModeNames` to make the debug
mode usable.

More information in the corresponding main PR
https://github.com/betaflight/betaflight/pull/11912
This commit is contained in:
haslinghuis 2022-11-05 02:12:12 +01:00 committed by GitHub
commit 92594aa954
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,5 +105,6 @@ const char * const debugModeNames[DEBUG_COUNT] = {
"GPS_RESCUE_HEADING",
"GPS_RESCUE_TRACKING",
"ATTITUDE",
"VTX_MSP"
"VTX_MSP",
"GPS_DOP",
};