Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion progalgspiflash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,11 @@ int ProgAlgSPIFlash::spi_flashinfo_m25p_mx25l(unsigned char *buf, int is_mx25l)
fbuf[1], fbuf[2]);
switch (fbuf[2])
{
case 0x17:
case 0x16: // MX25L3233F
pages = 131072;
sector_size = 65536;
break;
case 0x17: // MX25L6433F
pages = 262144;
sector_size = 65536;
break;
Expand Down