1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 00:35:39 +03:00

Bug: Telemetry Smartport Current amprerage is 10 times to big

This commit is contained in:
codepox 2015-08-19 00:20:03 -04:00
parent 3878a7ea2c
commit 5c23e9a181

View file

@ -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;