1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 13:25:30 +03:00

Merge remote-tracking branch 'multiwii/master'

Conflicts:
	changelog.html
	main.js
This commit is contained in:
Dominic Clifton 2014-07-20 01:01:25 +01:00
commit 1688b41eb2
32 changed files with 476 additions and 407 deletions

View file

@ -356,7 +356,11 @@ MSP.process_data = function(code, message_buffer, message_length) {
console.log(data);
break;
case MSP_codes.MSP_BOXIDS:
console.log(data);
AUX_CONFIG_IDS = []; // empty the array as new data is coming in
for (var i = 0; i < data.byteLength; i++) {
AUX_CONFIG_IDS.push(data.getUint8(i));
}
break;
case MSP_codes.MSP_SERVO_CONF:
SERVO_CONFIG = []; // empty the array as new data is coming in