In the simple uart program, the print statement uses 'format string', but you miss the f in front of the string...
instead of print("- {c:02x} {c}")
use print( f"- {c:02x} {c}") # note the f in front of the quoted string
instead of print("- {c:02x} {c}")
use print( f"- {c:02x} {c}") # note the f in front of the quoted string
Statistics: Posted by ghp — Sun Jan 05, 2025 5:24 pm