mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 00:35:39 +03:00
Fix merge of a753661c23c428ede8c2b72e95d3e31f6c8b894e when building for
targets that use telemetry.
This commit is contained in:
parent
5451d45f5f
commit
ee5211c5ad
1 changed files with 3 additions and 2 deletions
|
@ -269,7 +269,7 @@ static void sendAmperage(void)
|
|||
static void sendFuelLevel(void)
|
||||
{
|
||||
sendDataHead(ID_FUEL_LEVEL);
|
||||
serialize16((uint16_t)mAhdrawn);
|
||||
serialize16((uint16_t)mAhDrawn);
|
||||
}
|
||||
|
||||
static void sendHeading(void)
|
||||
|
@ -363,7 +363,8 @@ void handleFrSkyTelemetry(void)
|
|||
|
||||
if (feature(FEATURE_VBAT)) {
|
||||
sendVoltage();
|
||||
sendVoltageAmp();
|
||||
sendAmperage();
|
||||
sendFuelLevel();
|
||||
}
|
||||
|
||||
#ifdef GPS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue