-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch from dev repo fixes for v1.0.3
Patches from ============ Improve filename handling (#62, #63) 80228b6c01aa6e95e0060c07e3308f6217021996 GD32: fix reading of very last SD card sector 3c41957068ae87582e3ac65fd4e2a28beebe2b68 Fix spurious read error messages due to prefetch when image is at end… cb6d102435c5c599ed110cb40875626f829699e8 Narrow down error for spec 1.x sd cards 7ed375d8e30f08226703d781b13a9c06777b6042 to 786dffd3476b64882c11f0525b24087354ebc6d6 skipping e7c8fe7293276957b494ffa533fe4c7c2e954ff2 Remove boot flag check from SdFat d004cc3d862a9b2cc7b8575c5833581c65308254
- Loading branch information
Showing
7 changed files
with
120 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,7 +285,7 @@ bool ExFatPartition::init(FsBlockDevice* dev, uint8_t part) { | |
if (part >= 1) { | ||
mbr = reinterpret_cast<MbrSector_t*>(cache); | ||
mp = &mbr->part[part - 1]; | ||
if ((mp->boot != 0 && mp->boot != 0X80) || mp->type == 0) { | ||
if (mp->type == 0) { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
PetteriAimonen
Collaborator
|
||
DBG_FAIL_MACRO; | ||
goto fail; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Can you expand on this? When is this loosening of the check needed, should it be upstreamed to SdFat library and included for RP2040 also?