mirror of https://github.com/ArduPilot/ardupilot
AP_BLHeli: Update to support newer targets and protocols
This commit is contained in:
parent
0afd58fb99
commit
a1fda8bc76
|
@ -700,6 +700,8 @@ bool AP_BLHeli::BL_ConnectEx(void)
|
||||||
case 0x3306:
|
case 0x3306:
|
||||||
case 0x3406:
|
case 0x3406:
|
||||||
case 0x3506:
|
case 0x3506:
|
||||||
|
case 0x2B06:
|
||||||
|
case 0x4706:
|
||||||
blheli.interface_mode[blheli.chan] = imARM_BLB;
|
blheli.interface_mode[blheli.chan] = imARM_BLB;
|
||||||
debug("Interface type imARM_BLB");
|
debug("Interface type imARM_BLB");
|
||||||
break;
|
break;
|
||||||
|
@ -734,7 +736,7 @@ bool AP_BLHeli::BL_PageErase(void)
|
||||||
if (!BL_SendBuf(sCMD, 2)) {
|
if (!BL_SendBuf(sCMD, 2)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return BL_GetACK(1000) == brSUCCESS;
|
return BL_GetACK(3000) == brSUCCESS;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
*/
|
*/
|
||||||
#define SERIAL_4WAY_VER_MAIN 20
|
#define SERIAL_4WAY_VER_MAIN 20
|
||||||
#define SERIAL_4WAY_VER_SUB_1 (uint8_t) 0
|
#define SERIAL_4WAY_VER_SUB_1 (uint8_t) 0
|
||||||
#define SERIAL_4WAY_VER_SUB_2 (uint8_t) 02
|
#define SERIAL_4WAY_VER_SUB_2 (uint8_t) 03
|
||||||
|
|
||||||
#define SERIAL_4WAY_PROTOCOL_VER 107
|
#define SERIAL_4WAY_PROTOCOL_VER 107
|
||||||
// *** end
|
// *** end
|
||||||
|
|
Loading…
Reference in New Issue