Added IS25LP016D

This commit is contained in:
Benjamin Shockley 2018-09-10 14:55:18 -05:00 committed by GitHub
parent 08a2d962e3
commit c7cf38186d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -265,6 +265,21 @@ typedef struct {
.write_status_register_split = false, \
}
// Settings for the ISSI IS25LP016D-JULE-TR 2MiB SPI flash.
// Datasheet: http://www.issi.com/WW/pdf/25LP-WP016D.pdf
#define IS25LP016D {\
.total_size = (1 << 21), /* 2 MiB */ \
.start_up_time_us = 5000, \
.manufacturer_id = 0x9d, \
.memory_type = 0x60, \
.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 = false, \
.write_status_register_split = false, \
}
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H