Merge pull request #4713 from mikeller/fix_fixedwing_althold_reversed_condition

Fixed condition for `fixedwing_althold_reversed`.
This commit is contained in:
Michael Keller 2017-12-03 13:41:11 +13:00 committed by GitHub
commit 97a46aa0e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ const clivalue_t valueTable[] = {
#endif
// PG_AIRPLANE_CONFIG
#if defined(USE_BARO) || defined(USE_SONAR)
#if defined(USE_ALT_HOLD)
{ "fixedwing_althold_reversed", VAR_INT8 | MASTER_VALUE | MODE_LOOKUP, .config.lookup = { TABLE_OFF_ON }, PG_AIRPLANE_CONFIG, offsetof(airplaneConfig_t, fixedwing_althold_reversed) },
#endif