15 lines
246 B
Python
Raw Normal View History

2021-10-04 10:04:06 +08:00
import PikaStdLib
import STM32
time = STM32.Time()
uart = STM32.UART()
uart.init()
uart.setBaudRate(115200)
uart.setId(1)
uart.enable()
while True:
time.sleep_ms(500)
readBuff = uart.read(2)
print('read 2 char:')
print(readBuff)