From c9f1551554c49fb2080a22f2b827b4138d16fb3d Mon Sep 17 00:00:00 2001 From: 4712 <4712@outlook.de> Date: Thu, 13 Jul 2017 00:47:15 +0200 Subject: [PATCH] Fix BLHeli32 device id --- src/main/io/serial_4way.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/io/serial_4way.c b/src/main/io/serial_4way.c index 17200d030c..6c6057975d 100644 --- a/src/main/io/serial_4way.c +++ b/src/main/io/serial_4way.c @@ -329,7 +329,7 @@ uint16_t _crc_xmodem_update (uint16_t crc, uint8_t data) { (pDeviceInfo->words[0] == 0xF850) || (pDeviceInfo->words[0] == 0xE8B1) || \ (pDeviceInfo->words[0] == 0xE8B2)) -#define ARM_DEVICE_MATCH ((pDeviceInfo->words[0] == 0x9307) || (pDeviceInfo->words[0] == 0x930A) || \ +#define ARM_DEVICE_MATCH ((pDeviceInfo->words[0] == 0x1F06) || \ (pDeviceInfo->words[0] == 0x3306) || (pDeviceInfo->words[0] == 0x3406)) static uint8_t CurrentInterfaceMode;