summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-08-22 22:25:14 +0700
committerhathach <[email protected]>2024-08-22 22:25:14 +0700
commit45d06cd4ab2adea07513243447b6ec729d7d8c2c (patch)
tree2332657f7b099408bf275591423c47e7ab0dce97
parentccf886ca80ed74d985483fdb90e67703ebeb7dad (diff)
skip dual/host_info_to_device_cdc for pico due to a bug in pio-usb
-rw-r--r--hw/bsp/family_support.cmake2
-rw-r--r--hw/bsp/nrf/boards/feather_nrf52840_express/board.cmake2
-rw-r--r--test/hil/rpi.json1
3 files changed, 3 insertions, 2 deletions
diff --git a/hw/bsp/family_support.cmake b/hw/bsp/family_support.cmake
index 1df8a6f53..b457fcfac 100644
--- a/hw/bsp/family_support.cmake
+++ b/hw/bsp/family_support.cmake
@@ -463,7 +463,7 @@ function(family_flash_openocd TARGET)
# note skip verify since it has issue with rp2040
add_custom_target(${TARGET}-openocd
DEPENDS ${TARGET}
- COMMAND ${OPENOCD} ${OPTION_LIST} -c init -c halt -c "program $<TARGET_FILE:${TARGET}> reset" ${OPTION_LIST2} -c exit
+ COMMAND ${OPENOCD} -c "tcl_port disabled" -c "gdb_port disabled" ${OPTION_LIST} -c init -c halt -c "program $<TARGET_FILE:${TARGET}>" -c reset ${OPTION_LIST2} -c exit
VERBATIM
)
endfunction()
diff --git a/hw/bsp/nrf/boards/feather_nrf52840_express/board.cmake b/hw/bsp/nrf/boards/feather_nrf52840_express/board.cmake
index 6ff1a7b59..a0282aa23 100644
--- a/hw/bsp/nrf/boards/feather_nrf52840_express/board.cmake
+++ b/hw/bsp/nrf/boards/feather_nrf52840_express/board.cmake
@@ -2,7 +2,7 @@ set(MCU_VARIANT nrf52840)
set(LD_FILE_GNU ${CMAKE_CURRENT_LIST_DIR}/../../linker/nrf52840_s140_v6.ld)
# enable max3421 host driver for this board
-set(MAX3421_HOST 1)
+# set(MAX3421_HOST 1)
function(update_board TARGET)
endfunction()
diff --git a/test/hil/rpi.json b/test/hil/rpi.json
index b75c1339b..7821f1660 100644
--- a/test/hil/rpi.json
+++ b/test/hil/rpi.json
@@ -49,6 +49,7 @@
"flasher_sn": "E6614103E72C1D2F",
"flasher_args": "-f interface/cmsis-dap.cfg -f target/rp2040.cfg -c \"adapter speed 5000\"",
"tests": {
+ "skip": ["dual/host_info_to_device_cdc"],
"dual_attached": [{"vid_pid": "1a86_55d4", "serial": "52D2002470"}]
}
},