Skip to content

Commit 79cea72

Browse files
committed
Merge remote-tracking branch 'adafruit/master' into remove-unused-ports
2 parents 615ec7f + 756e4a4 commit 79cea72

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

supervisor/shared/external_flash/devices.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,4 +443,22 @@ typedef struct {
443443
.single_status_byte = false, \
444444
}
445445

446+
// Settings for the ISSI IS25LP128F 16MiB SPI flash.
447+
// Datasheet: http://www.issi.com/WW/pdf/25LP-WP128F.pdf
448+
#define IS25LP128F {\
449+
.total_size = (1 << 24), /* 16 MiB */ \
450+
.start_up_time_us = 10000, \
451+
.manufacturer_id = 0x9d, \
452+
.memory_type = 0x60, \
453+
.capacity = 0x18, \
454+
.max_clock_speed_mhz = 133, \
455+
.quad_enable_bit_mask = 0x02, \
456+
.has_sector_protection = true, \
457+
.supports_fast_read = true, \
458+
.supports_qspi = true, \
459+
.supports_qspi_writes = true, \
460+
.write_status_register_split = false, \
461+
.single_status_byte = true, \
462+
}
463+
446464
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H

0 commit comments

Comments
 (0)