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 59ddb41 commit a3a5d46Copy full SHA for a3a5d46
tests/on_target/tests/test_bridge/test_serial_dfu.py
@@ -88,7 +88,10 @@ def test_02_setup_nrf91():
88
setup nrf91, flash bootloader only
89
"""
90
wait_until_uart_available(CONN_BRIDGE_SERIAL)
91
- pyocd_flash_device(serial=CONN_BRIDGE_SERIAL, hexfile=NRF91_BOOTLOADER)
+ try:
92
+ pyocd_flash_device(serial=CONN_BRIDGE_SERIAL, hexfile=NRF91_BOOTLOADER)
93
+ except Exception as e:
94
+ logger.error(f"Error flashing bootloader: {e}")
95
96
97
def test_03_dfu_app_nrf91():
0 commit comments