File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
supervisor/shared/external_flash Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -443,4 +443,22 @@ typedef struct {
443
443
.single_status_byte = false, \
444
444
}
445
445
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
+
446
464
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H
You can’t perform that action at this time.
0 commit comments