1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

adding packet error indicator in status bar

fixes #8
This commit is contained in:
cTn 2013-12-05 10:34:10 +01:00
parent 0344110c2d
commit ac85aeff8a
3 changed files with 9 additions and 3 deletions

View file

@ -132,8 +132,9 @@ $(document).ready(function() {
// Change port utilization to 0
$('span.port-usage').html('0%');
// reset valid config received variable (used to block tabs while not connected properly)
configuration_received = false;
configuration_received = false; // reset valid config received variable (used to block tabs while not connected properly)
MSP.packet_error = 0; // reset CRC packet error counter for next session
// unlock port select & baud
$('div#port-picker #port, div#port-picker #baud, div#port-picker #delay').prop('disabled', false);