File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1205,19 +1205,17 @@ impl Hardware {
12051205 words : & ' w mut [ u8 ] ,
12061206 ) -> Result < & ' w [ u8 ] , Self :: Error > {
12071207 if IS_CS_LOW . load ( Ordering :: SeqCst ) {
1208- defmt:: info !( "out: {:?}" , words) ;
1208+ defmt:: trace !( "SD out: {:?}" , words) ;
12091209 self . 0 . with_bus_cs ( 1 , |spi, _buffer| {
12101210 spi. transfer ( words) . unwrap ( ) ;
12111211 } ) ;
1212- defmt:: info !( "in: {:?}" , words) ;
1212+ defmt:: trace !( "SD in: {:?}" , words) ;
12131213 Ok ( words)
12141214 } else {
12151215 // Select a slot we don't use so the SD card won't be activated
1216- defmt:: info!( "out: {:?}" , words) ;
12171216 self . 0 . with_bus_cs ( 7 , |spi, _buffer| {
12181217 spi. transfer ( words) . unwrap ( ) ;
12191218 } ) ;
1220- defmt:: info!( "in: {:?}" , words) ;
12211219 Ok ( words)
12221220 }
12231221 }
You can’t perform that action at this time.
0 commit comments