File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ pub struct AcquireOpts {
130130 /// Some cards don't support CRC mode. At least a 512MiB Transcend one.
131131 pub require_crc : bool ,
132132 /// Some cards should send CMD0 after an idle state to avoid being stuck in [`TimeoutWaitNotBusy`].
133- /// See [this conversation](https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/33)
134- /// and [this one])(https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/33 ).
133+ /// See [this conversation](https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/33#issue-803000031 )
134+ /// and [this one])(https://github.com/rust-embedded-community/embedded-sdmmc-rs/pull/32#issue-802999340 ).
135135 pub skip_wait_not_busy : bool ,
136136}
137137
@@ -197,8 +197,8 @@ where
197197 trace ! ( "Enter SPI mode, attempt: {}.." , 32i32 - attempts) ;
198198
199199 // Select whether or not to skip waiting for the card not to be busy
200- // when issuing the first CMD0. See https://github.com/rust-embedded-community/embedded-sdmmc-rs/pull/32 and
201- // https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/33 .
200+ // when issuing the first CMD0. See https://github.com/rust-embedded-community/embedded-sdmmc-rs/issues/33#issue-803000031 and
201+ // https://github.com/rust-embedded-community/embedded-sdmmc-rs/pull/32#issue-802999340 .
202202 let cmd0_func = match options. skip_wait_not_busy {
203203 true => Self :: card_command_skip_wait,
204204 false => Self :: card_command,
You can’t perform that action at this time.
0 commit comments