We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1d8d7 commit 2aa672cCopy full SHA for 2aa672c
1 file changed
src/main.rs
@@ -1205,19 +1205,17 @@ impl Hardware {
1205
words: &'w mut [u8],
1206
) -> Result<&'w [u8], Self::Error> {
1207
if IS_CS_LOW.load(Ordering::SeqCst) {
1208
- defmt::info!("out: {:?}", words);
+ defmt::trace!("SD out: {:?}", words);
1209
self.0.with_bus_cs(1, |spi, _buffer| {
1210
spi.transfer(words).unwrap();
1211
});
1212
- defmt::info!("in: {:?}", words);
+ defmt::trace!("SD in: {:?}", words);
1213
Ok(words)
1214
} else {
1215
// Select a slot we don't use so the SD card won't be activated
1216
1217
self.0.with_bus_cs(7, |spi, _buffer| {
1218
1219
1220
1221
1222
}
1223
0 commit comments