Skip to content

Commit cd9e3fe

Browse files
committed
Update links to card init issue/PR
1 parent c68db89 commit cd9e3fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sdmmc.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)