mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Merge pull request #1230 from codepox/master
Bug Fix : Telemetry Smartport Current amperage is 10 times too big
This commit is contained in:
commit
ea35c735a3
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ void handleSmartPortTelemetry(void)
|
|||
break;
|
||||
case FSSP_DATAID_CURRENT :
|
||||
if (feature(FEATURE_CURRENT_METER)) {
|
||||
smartPortSendPackage(id, amperage); // given in 10mA steps, unknown requested unit
|
||||
smartPortSendPackage(id, amperage / 10); // given in 10mA steps, unknown requested unit
|
||||
smartPortHasRequest = 0;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue