Support 64Mbit and 128Mbit flash size auto detection.
This commit is contained in:
parent
c7c88feae4
commit
5d9caf23b6
|
@ -56,6 +56,12 @@ uint32_t flash_get_size_byte(void)
|
||||||
case SIZE_32MBIT:
|
case SIZE_32MBIT:
|
||||||
// 32Mbit, 4MByte
|
// 32Mbit, 4MByte
|
||||||
flash_size = 4 * 1024 * 1024;
|
flash_size = 4 * 1024 * 1024;
|
||||||
|
case SIZE_64MBIT:
|
||||||
|
// 64Mbit, 8MByte
|
||||||
|
flash_size = 8 * 1024 * 1024;
|
||||||
|
case SIZE_128MBIT:
|
||||||
|
// 128Mbit, 16MByte
|
||||||
|
flash_size = 16 * 1024 * 1024;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// Unknown flash size, fall back mode.
|
// Unknown flash size, fall back mode.
|
||||||
|
|
|
@ -52,6 +52,8 @@ typedef struct
|
||||||
SIZE_8MBIT = 2,
|
SIZE_8MBIT = 2,
|
||||||
SIZE_16MBIT = 3,
|
SIZE_16MBIT = 3,
|
||||||
SIZE_32MBIT = 4,
|
SIZE_32MBIT = 4,
|
||||||
|
SIZE_64MBIT = 5,
|
||||||
|
SIZE_128MBIT = 6,
|
||||||
} size : 4;
|
} size : 4;
|
||||||
} ICACHE_STORE_TYPEDEF_ATTR SPIFlashInfo;
|
} ICACHE_STORE_TYPEDEF_ATTR SPIFlashInfo;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue