update UART-Between-Boards guide to work around NRF52 bug before CP8

This commit is contained in:
Neradoc 2022-09-16 03:53:11 +02:00
parent 41978da2a3
commit caa352a52b

View file

@ -65,7 +65,7 @@ while True:
pass
byte_read = uart.read(1) # Read one byte over UART lines
if byte_read is None:
if not byte_read:
# Nothing read.
continue