Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
702db506
Unverified
Commit
702db506
authored
Jan 17, 2022
by
P-R-O-C-H-Y
Committed by
GitHub
Jan 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUGFIX - Sd check status (#6103)
* Edit sd_diskio to check card status * Bugfix of ff_sd_status
parent
1ac3aefa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libraries/SD/src/sd_diskio.cpp
libraries/SD/src/sd_diskio.cpp
+1
-1
No files found.
libraries/SD/src/sd_diskio.cpp
View file @
702db506
...
...
@@ -609,7 +609,7 @@ unknown_card:
DSTATUS
ff_sd_status
(
uint8_t
pdrv
)
{
if
(
sd
Command
(
pdrv
,
SEND_STATUS
,
0
,
NULL
)
==
0xFF
)
if
(
sd
Transaction
(
pdrv
,
SEND_STATUS
,
0
,
NULL
)
)
{
log_e
(
"Check status failed"
);
return
STA_NOINIT
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment