1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-17 05:15:21 +03:00

Merge pull request #345 from mikeller/adjust_current_meter_settings

Adjusted current meter setting ranges to allow for negative offset.
This commit is contained in:
Michael Keller 2016-11-23 10:07:35 +13:00 committed by GitHub
commit e0b1393fe2
2 changed files with 4 additions and 4 deletions

View file

@ -392,7 +392,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
BF_CONFIG.board_align_pitch = data.read16(); // -180 - 360
BF_CONFIG.board_align_yaw = data.read16(); // -180 - 360
BF_CONFIG.currentscale = data.read16();
BF_CONFIG.currentoffset = data.readU16();
BF_CONFIG.currentoffset = data.read16();
updateTabList(BF_CONFIG.features);

View file

@ -384,12 +384,12 @@
</tbody>
</table>
<div class="number">
<label> <input type="number" name="currentscale" step="1" min="-1000" max="1000" /> <span
<label> <input type="number" name="currentscale" step="1" min="-16000" max="16000" /> <span
i18n="configurationCurrentScale"></span>
</label>
</div>
<div class="number">
<label> <input type="number" name="currentoffset" step="1" min="0" max="3300" /> <span
<label> <input type="number" name="currentoffset" step="1" min="-1600" max="16000" /> <span
i18n="configurationCurrentOffset"></span>
</label>
</div>