Skip to content

Commit

Permalink
Merge pull request #168 from bobobo1618/patch-1
Browse files Browse the repository at this point in the history
Fix typo in flash device definition
  • Loading branch information
hathach authored Dec 25, 2023
2 parents 4cbe305 + 43c9460 commit 04d7ae7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/flash_devices.h
Original file line number Diff line number Diff line change
Expand Up @@ -532,12 +532,11 @@ typedef struct {
{ \
.total_size = (1 << 21), /* 2 MiB */ \
.start_up_time_us = 5000, .manufacturer_id = 0x85, \
.memory_type = 0x60, .capacity = 0x15, \
.max_clock_speed_mhz = 104.quad_enable_bit_mask = 0x02, \
.has_sector_protection = false, .supports_fast_read = true, \
.supports_qspi = true, .supports_qspi_writes = true, \
.write_status_register_split = false, .single_status_byte = false, \
.is_fram = false, \
.memory_type = 0x60, .capacity = 0x15, .max_clock_speed_mhz = 104, \
.quad_enable_bit_mask = 0x02, .has_sector_protection = false, \
.supports_fast_read = true, .supports_qspi = true, \
.supports_qspi_writes = true, .write_status_register_split = false, \
.single_status_byte = false, .is_fram = false, \
}

#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H

0 comments on commit 04d7ae7

Please sign in to comment.