You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The address of the block device is indicated by the size_t type; the size_t type in the Raspberry Pi Pico SDK is 32 bits, with a maximum value of 4294967295. This means that SDHC cards can only be used up to 4 GB.
It is difficult to think of a use case where an embedded device consumes more than 4 GB, but SDHC cards are common devices, so it is considered necessary to address this issue.
Change block device addressing to typedef uint64_t bd_size_t.
The text was updated successfully, but these errors were encountered:
The address of the block device is indicated by the
size_t
type; the size_t type in the Raspberry Pi Pico SDK is 32 bits, with a maximum value of 4294967295. This means that SDHC cards can only be used up to 4 GB.It is difficult to think of a use case where an embedded device consumes more than 4 GB, but SDHC cards are common devices, so it is considered necessary to address this issue.
Change block device addressing to
typedef uint64_t bd_size_t
.The text was updated successfully, but these errors were encountered: