From d1e47539fc851e82792ecee36eb7fe638be23d96 Mon Sep 17 00:00:00 2001 From: Nikolai Kostrigin <36914118+realnickel@users.noreply.github.com> Date: Wed, 17 Feb 2021 19:51:34 +0300 Subject: [PATCH] common/descriptor.cpp: add JEDEC ID C86015 definition as GD25LQ16V (#236) "parseIntelImage: SPI flash with unknown JEDEC ID C86015 found in VSCC table" message was displayed on a device equipped with GigaDevice GD25LQ16V SPI flash Co-authored-by: Nikolai Kostrigin --- common/descriptor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/descriptor.cpp b/common/descriptor.cpp index bcbcbbe..daf842b 100644 --- a/common/descriptor.cpp +++ b/common/descriptor.cpp @@ -195,6 +195,7 @@ UString jedecIdToUString(UINT8 vendorId, UINT8 deviceId0, UINT8 deviceId1) case 0xC84017: return UString("GigaDevice GD25x64"); case 0xC84018: return UString("GigaDevice GD25x128"); case 0xC84019: return UString("GigaDevice GD25x256C"); + case 0xC86015: return UString("GigaDevice GD25LQ16V"); case 0xC86017: return UString("GigaDevice GD25Lx64"); case 0xC86018: return UString("GigaDevice GD25Lx128"); case 0xC86019: return UString("GigaDevice GD25LQ256C");