AP_FlashIface: add support for DTR variant of w25q found on SPRacingH7

This commit is contained in:
Andy Piper 2022-02-19 20:35:35 +00:00 committed by Peter Barker
parent ed952a0ea0
commit 0696dda324

View File

@ -39,8 +39,9 @@ struct supported_device {
};
static const struct supported_device supported_devices[] = {
{"mt25q", 0x20, 0xBA}, // https://www.mouser.in/datasheet/2/671/mict_s_a0003959700_1-2290909.pdf
{"w25q", 0xEF, 0x40}
{"mt25q", 0x20, 0xBA}, // https://www.mouser.in/datasheet/2/671/mict_s_a0003959700_1-2290909.pdf
{"w25q", 0xEF, 0x40},
{"w25q-dtr", 0xEF, 0x70}
};
#ifdef HAL_BOOTLOADER_BUILD