From 7774cfc9ea9a2365f3b162f9dbc7d99dd62428dd Mon Sep 17 00:00:00 2001 From: adrian Date: Tue, 28 Aug 2012 22:17:22 +0000 Subject: [PATCH] Add a new flash part - 4MB SPI flash from Winbond. --- sys/dev/flash/mx25l.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/flash/mx25l.c b/sys/dev/flash/mx25l.c index af098cafb6d..52818984811 100644 --- a/sys/dev/flash/mx25l.c +++ b/sys/dev/flash/mx25l.c @@ -104,6 +104,7 @@ struct mx25l_flash_ident flash_devices[] = { { "s25s1032", 0x01, 0x0215, 64 * 1024, 64, FL_NONE }, { "s25sl064a", 0x01, 0x0216, 64 * 1024, 128, FL_NONE }, { "w25q64bv", 0xef, 0x4017, 64 * 1024, 128, FL_ERASE_4K }, + { "w25x32", 0xef, 0x3016, 64 * 1024, 64, FL_ERASE_4K }, }; static uint8_t -- 2.45.0