Update devices.h
This commit is contained in:
parent
05ff3feea5
commit
c344d48840
|
@ -180,9 +180,9 @@ typedef struct {
|
|||
.write_status_register_split = false, \
|
||||
}
|
||||
|
||||
// Settings for the Winbond W25Q16JV 2MiB SPI flash. Note that JV-IQ has a different .memory_type (0x40)
|
||||
// Datasheet: https://www.winbond.com/resource-files/w25q16jv%20spi%20revf%2005092017.pdf
|
||||
#define W25Q16JV_IQ {\
|
||||
// Settings for the Winbond W25Q16JV 2MiB SPI flash.
|
||||
|
||||
#define W25Q16JV {\
|
||||
.total_size = (1 << 21), /* 2 MiB */ \
|
||||
.start_up_time_us = 5000, \
|
||||
.manufacturer_id = 0xef, \
|
||||
|
@ -197,23 +197,6 @@ typedef struct {
|
|||
.write_status_register_split = false, \
|
||||
}
|
||||
|
||||
// Settings for the Winbond W25Q16JV_IM 2MiB SPI flash. Note that JV-IM has a different .memory_type (0x70)
|
||||
// Datasheet: https://www.winbond.com/resource-files/w25q16jv%20spi%20revf%2005092017.pdf
|
||||
#define W25Q16JV_IM {\
|
||||
.total_size = (1 << 21), /* 2 MiB */ \
|
||||
.start_up_time_us = 5000, \
|
||||
.manufacturer_id = 0xef, \
|
||||
.memory_type = 0x70, \
|
||||
.capacity = 0x15, \
|
||||
.max_clock_speed_mhz = 133, \
|
||||
.has_sector_protection = false, \
|
||||
.supports_fast_read = true, \
|
||||
.supports_qspi = true, \
|
||||
.has_quad_enable = true, \
|
||||
.supports_qspi_writes = true, \
|
||||
.write_status_register_split = false, \
|
||||
}
|
||||
|
||||
// Settings for the Winbond W25Q32BV 4MiB SPI flash.
|
||||
// Datasheet: https://www.winbond.com/resource-files/w25q32bv_revi_100413_wo_automotive.pdf
|
||||
#define W25Q32BV {\
|
||||
|
@ -282,4 +265,6 @@ typedef struct {
|
|||
.write_status_register_split = false, \
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H
|
||||
|
|
Loading…
Reference in New Issue