Skip to content

Commit c7cf381

Browse files
authored
Added IS25LP016D
1 parent 08a2d96 commit c7cf381

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

ports/atmel-samd/external_flash/devices.h

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,21 @@ typedef struct {
265265
.write_status_register_split = false, \
266266
}
267267

268-
268+
// Settings for the ISSI IS25LP016D-JULE-TR 2MiB SPI flash.
269+
// Datasheet: http://www.issi.com/WW/pdf/25LP-WP016D.pdf
270+
#define IS25LP016D {\
271+
.total_size = (1 << 21), /* 2 MiB */ \
272+
.start_up_time_us = 5000, \
273+
.manufacturer_id = 0x9d, \
274+
.memory_type = 0x60, \
275+
.capacity = 0x15, \
276+
.max_clock_speed_mhz = 133, \
277+
.has_sector_protection = false, \
278+
.supports_fast_read = true, \
279+
.supports_qspi = true, \
280+
.has_quad_enable = true, \
281+
.supports_qspi_writes = false, \
282+
.write_status_register_split = false, \
283+
}
269284

270285
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H

0 commit comments

Comments
 (0)