comment out line that doesn't compile

This commit is contained in:
Jorge Aparicio 2021-07-22 08:28:11 +02:00
parent cd4e8183f6
commit ae1f9008a4

View file

@ -61,7 +61,7 @@ mod app {
let local_to_uart0 = cx.local.local_to_uart0; let local_to_uart0 = cx.local.local_to_uart0;
// error: no `local_to_uart1` field in `uart0::LocalResources` // error: no `local_to_uart1` field in `uart0::LocalResources`
cx.local.local_to_uart1 += 1; // cx.local.local_to_uart1 += 1;
hprintln!("UART0: local_to_uart0 = {}", local_to_uart0).unwrap(); hprintln!("UART0: local_to_uart0 = {}", local_to_uart0).unwrap();
} }