Merge pull request #10166 from pgreenland/vtx_allow_exit_pitmode_on_arm

This commit is contained in:
Michael Keller 2020-10-11 14:35:04 +13:00 committed by GitHub
commit ab65e7241d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 19 deletions

View File

@ -185,16 +185,11 @@ static bool vtxProcessPower(vtxDevice_t *vtxDevice)
static bool vtxProcessPitMode(vtxDevice_t *vtxDevice)
{
static bool prevPmSwitchState = false;
unsigned vtxStatus;
if (!ARMING_FLAG(ARMED) && vtxCommonGetStatus(vtxDevice, &vtxStatus)) {
if (vtxCommonGetStatus(vtxDevice, &vtxStatus)) {
bool currPmSwitchState = IS_RC_MODE_ACTIVE(BOXVTXPITMODE);
if (currPmSwitchState != prevPmSwitchState) {
prevPmSwitchState = currPmSwitchState;
if (currPmSwitchState) {
if (currPmSwitchState) {
if (!ARMING_FLAG(ARMED)) {
#if defined(VTX_SETTINGS_FREQCMD)
if (vtxSettingsConfig()->pitModeFreq) {
return false;
@ -205,12 +200,12 @@ static bool vtxProcessPitMode(vtxDevice_t *vtxDevice)
return true;
}
} else {
if (vtxStatus & VTX_STATUS_PIT_MODE) {
vtxCommonSetPitMode(vtxDevice, false);
}
} else {
if (vtxStatus & VTX_STATUS_PIT_MODE) {
vtxCommonSetPitMode(vtxDevice, false);
return true;
}
return true;
}
}
}

View File

@ -918,6 +918,8 @@ static void vtxSASetPowerByIndex(vtxDevice_t *vtxDevice, uint8_t index)
static void vtxSASetPitMode(vtxDevice_t *vtxDevice, uint8_t onoff)
{
static bool lastOnOff = false;
if (!vtxSAIsReady(vtxDevice) || saDevice.version < 2) {
return;
}
@ -927,6 +929,12 @@ static void vtxSASetPitMode(vtxDevice_t *vtxDevice, uint8_t onoff)
return;
}
// Only issue pit mode commands on status change
if (lastOnOff == onoff) {
return;
}
lastOnOff = onoff;
if (saDevice.version >= 3 && !saDevice.willBootIntoPitMode) {
if (onoff) {
// enable pitmode using SET_POWER command with 0 dbm.

View File

@ -325,6 +325,7 @@ static void trampQuery(uint8_t cmd)
static void vtxTrampProcess(vtxDevice_t *vtxDevice, timeUs_t currentTimeUs)
{
UNUSED(vtxDevice);
uint8_t configUpdateRequired = 0;
// Read response from device
const char replyCode = trampReceive();
@ -363,8 +364,6 @@ static void vtxTrampProcess(vtxDevice_t *vtxDevice, timeUs_t currentTimeUs)
}
case TRAMP_STATUS_ONLINE_MONITOR_FREQPWRPIT:
{
uint8_t configUpdateRequired = 0;
// Note after config a status update request is made, a new status
// request is made, this request is handled above and should prevent
// subsiquent config updates if the config is now correct
@ -425,6 +424,7 @@ static void vtxTrampProcess(vtxDevice_t *vtxDevice, timeUs_t currentTimeUs)
trampLastTimeUs = currentTimeUs;
}
}
break;
}
case TRAMP_STATUS_ONLINE_MONITOR_TEMP:
@ -463,6 +463,9 @@ static void vtxTrampProcess(vtxDevice_t *vtxDevice, timeUs_t currentTimeUs)
}
DEBUG_SET(DEBUG_VTX_TRAMP, 0, trampStatus);
DEBUG_SET(DEBUG_VTX_TRAMP, 1, replyCode);
DEBUG_SET(DEBUG_VTX_TRAMP, 2, configUpdateRequired);
DEBUG_SET(DEBUG_VTX_TRAMP, 3, trampRetryCount);
#ifdef USE_CMS
trampCmsUpdateStatusString();
@ -599,10 +602,8 @@ static bool vtxTrampGetStatus(const vtxDevice_t *vtxDevice, unsigned *status)
return false;
}
// Mirror configued pit mode state rather than use current pitmode as we
// should, otherwise the logic in vtxProcessPitMode may not get us to the
// correct state if pitmode is toggled quickly
*status = (trampConfPitMode ? 0 : VTX_STATUS_PIT_MODE);
// Return pitmode from latest query response
*status = (trampCurPitMode ? 0 : VTX_STATUS_PIT_MODE);
// Check VTX is not locked
*status |= ((trampCurControlMode & TRAMP_CONTROL_RACE_LOCK) ? VTX_STATUS_LOCKED : 0);