This is an automated email from Gerrit. "Simon Solway <spsspa...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7921
-- gerrit commit ed0036af7ede41dcdab2ff009e4d2ce2a3421371 Author: SPSSparky <spsspa...@gmail.com> Date: Wed Sep 27 23:18:39 2023 +0100 flash/nor/spi.c: Add Puya PY25Q128HA flash device found on clone Rpi pico 16MB YD-RP2040 Flash device details can be found on website at link:https://puyasemi.com/uploadfiles/2022/09/20220913130446446.pdf Change-Id: I21ad2239c37a58402f8eed0a71bdd245c563961e Signed-off-by: SPSSparky <spsspa...@gmail.com> flash/nor/spi.c: Add Puya PY25Q128HA flash device found on clone Rpi pico 16MB YD-RP2040 Flash device details can be found on website at link:https://puyasemi.com/uploadfiles/2022/09/20220913130446446.pdf Change-Id: I21ad2239c37a58402f8eed0a71bdd245c563961e Signed-off-by: SPSSparky <spsspa...@gmail.com> flash/nor/spi.c: Add Puya PY25Q128HA flash device found on clone Rpi pico 16MB YD-RP2040 Flash device details can be found on website at link:https://puyasemi.com/uploadfiles/2022/09/20220913130446446.pdf Change-Id: I5998c0110387c244c44928432165baaacff68fa0 Signed-off-by: SPSSparky <spsspa...@gmail.com> diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index ace274f3dd..2e1d97644c 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -172,6 +172,7 @@ const struct flash_device flash_devices[] = { FLASH_ID("xtx xt25q64b", 0x03, 0x0b, 0x02, 0xd8, 0xc7, 0x0017600b, 0x100, 0x10000, 0x800000), FLASH_ID("xtx xt25q128b", 0x03, 0x0b, 0x02, 0xd8, 0xc7, 0x0018600b, 0x100, 0x10000, 0x1000000), FLASH_ID("zetta zd25q16", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001560ba, 0x100, 0x10000, 0x200000), + FLASH_ID("puya py25q128ha", 0x03, 0x6b, 0x02, 0xd8, 0xc7, 0x00182085, 0x100, 0x1000, 0x1000000), /* FRAM, no erase commands, no write page or sectors */ FRAM_ID("fu mb85rs16n", 0x03, 0, 0x02, 0x00010104, 0x800), --