We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0975255 commit bb484b6Copy full SHA for bb484b6
tests/extmod/machine_uart_tx.py
@@ -28,7 +28,10 @@
28
initial_delay_ms = 20 # UART sends idle frame after init, so wait for that
29
bit_margin = 1
30
elif "pyboard" in sys.platform:
31
- uart_id = 4
+ if "STM32WB" in sys.implementation._machine:
32
+ uart_id = "LP1"
33
+ else:
34
+ uart_id = 4
35
pins = {}
36
initial_delay_ms = 50 # UART sends idle frame after init, so wait for that
37
bit_margin = 1 # first start-bit must wait to sync with the UART clock
0 commit comments