Replies: 1 comment
-
@eetnev Just letting you know that this issue has already been addressed in #72754. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've configured both flash memory (mx25r64) and an SD-card on the same SPI bus and I'm encountering deadlock issues when the SD-card slot is left empty and the file system in the flash memory is being accessed.
It seems that
sdhc_spi_request()
doesn't callspi_release()
ifsdhc_spi_send_cmd()
orsdhc_spi_write_data()
fails. Is there a specific reason for this? I need to calldisk_access_init()
to determine if the SD-card is present or not. Naturally, if the SD-card slot is empty, the function will fail with an-ETIMEDOUT
error but now the SPI is left in locked state for the reasons stated above.For the record, everything seems to run smoothly if an SD-card has been inserted.
Beta Was this translation helpful? Give feedback.
All reactions