Skip to content

Commit 7d707ce

Browse files
committed
[nrf fromtree] tests: boards: nrf: coresight_stm: Fix nrfutil trace command
Latest version of nrfutil trace doesn't support setting uart baudrate. Remove --baudrate {baudrate_val} from command that executes nrfutil. Upstream PR #: 83939 Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 54b2f15 commit 7d707ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/boards/nrf/coresight_stm/pytest/test_stm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ def _nrfutil_dictionary_from_serial(
132132
collect_time: float = 60.0,
133133
) -> None:
134134
UART_PATH = dut.device_config.serial
135-
UART_BAUDRATE = dut.device_config.baud
136135
dut.close()
137136

138137
logger.debug(f"Using serial: {UART_PATH}")
@@ -154,7 +153,7 @@ def _nrfutil_dictionary_from_serial(
154153
cmd = (
155154
"nrfutil trace stm --database-config "
156155
f"{config_str} "
157-
f"--input-serialport {UART_PATH} --baudrate {UART_BAUDRATE} "
156+
f"--input-serialport {UART_PATH} "
158157
f"--output-ascii {decoded_file_name}"
159158
)
160159
try:

0 commit comments

Comments
 (0)