Merge pull request #9867 from mikeller/cleanup_vario

Cleaned up 'getEstimatedVario()'.
This commit is contained in:
Michael Keller 2020-06-22 00:19:31 +12:00 committed by GitHub
commit 5fea4a89c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -188,12 +188,9 @@ int32_t getEstimatedAltitudeCm(void)
return estimatedAltitudeCm;
}
// This should be removed or fixed, but it would require changing a lot of other things to get rid of.
#ifdef USE_VARIO
int16_t getEstimatedVario(void)
{
#ifdef USE_VARIO
return estimatedVario;
#else
return 0;
#endif
}
#endif

View File

@ -705,10 +705,12 @@ void processSmartPortTelemetry(smartPortPayload_t *payload, volatile bool *clear
smartPortSendPackage(id, getMAhDrawn()); // given in mAh, should be in percent according to SmartPort spec
*clearToSend = false;
break;
#if defined(USE_VARIO)
case FSSP_DATAID_VARIO :
smartPortSendPackage(id, getEstimatedVario()); // in cm/s according to SmartPort spec
*clearToSend = false;
break;
#endif
case FSSP_DATAID_HEADING :
smartPortSendPackage(id, attitude.values.yaw * 10); // in degrees * 100 according to SmartPort spec
*clearToSend = false;