File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -681,8 +681,7 @@ class Tp_Tc {
681
681
#define P8 Pa1 /* 8 - PA1 */
682
682
#define P9 Pa2 /* 9 - PA2 */
683
683
#define P10 Pa3 /* 10 - PA3 */
684
- #define P11 Pa4 /* 11 digitalWrite(4, 0);
685
- - PA4 */
684
+ #define P11 Pa4 /* 11 - PA4 */
686
685
#define P12 Pa5 /* 12 - PA5 */
687
686
#define P13 Pc1 /* 13 - PC1 */
688
687
#define P14 Pc0 /* 14 - PC0 */
Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ void loop() {
503
503
if (isfat (parts[cpart].type )) {
504
504
Fats[cpart] = new PFAT (&sto[i], cpart, parts[cpart].firstSector );
505
505
// int r = Fats[cpart]->Good();
506
- if (Fats[cpart]->Good ()) {
506
+ if (Fats[cpart]->MountStatus ()) {
507
507
delete Fats[cpart];
508
508
Fats[cpart] = NULL ;
509
509
} else cpart++;
@@ -514,7 +514,7 @@ void loop() {
514
514
// try superblock
515
515
Fats[cpart] = new PFAT (&sto[i], cpart, 0 );
516
516
// int r = Fats[cpart]->Good();
517
- if (Fats[cpart]->Good ()) {
517
+ if (Fats[cpart]->MountStatus ()) {
518
518
// printf_P(PSTR("Superblock error %x\r\n"), r);
519
519
delete Fats[cpart];
520
520
Fats[cpart] = NULL ;
You can’t perform that action at this time.
0 commit comments