Add support to Cypress S25FL128L flash memory

This commit is contained in:
Faduf 2018-02-10 20:39:16 +01:00
parent 1c3a3229ad
commit b580534eeb
1 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@
#define JEDEC_ID_WINBOND_W25Q64 0xEF4017
#define JEDEC_ID_WINBOND_W25Q128 0xEF4018
#define JEDEC_ID_WINBOND_W25Q256 0xEF4019
#define JEDEC_ID_CYPRESS_S25FL128L 0x016018
static busDevice_t busInstance;
static busDevice_t *bus;
@ -195,6 +196,7 @@ static bool m25p16_readIdentification(void)
break;
case JEDEC_ID_MICRON_N25Q128:
case JEDEC_ID_WINBOND_W25Q128:
case JEDEC_ID_CYPRESS_S25FL128L:
geometry.sectors = 256;
geometry.pagesPerSector = 256;
break;