Skip to content
2 changes: 1 addition & 1 deletion lib/mpy-test-ext
2 changes: 1 addition & 1 deletion lib/mtb-psoc6-libs
Submodule mtb-psoc6-libs updated 1 files
+6 −6 Makefile
6 changes: 3 additions & 3 deletions ports/psoc6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -212,18 +212,18 @@ deploy: all mtb_program
# When working locally, if a "local-devs.yml" file is placed in "tools/psoc6"
# it will be used
ifneq ($(DEVS_FILE),)
MULTI_BOARD_DEVS_OPTS = -b $(BOARD) -y $(DEVS_FILE)
MULTI_BOARD_DEVS_OPTS = -f name=$(BOARD) --devs-yml $(DEVS_FILE)
else
DFLT_LOCAL_DEVS_FILE_NAME = local-devs.yml
LOCAL_DEVS_FILE=$(TOP)/tools/psoc6/$(DFLT_LOCAL_DEVS_FILE_NAME)
ifneq (,$(wildcard $(LOCAL_DEVS_FILE)))
MULTI_BOARD_DEVS_OPTS = -b $(BOARD) -y $(LOCAL_DEVS_FILE)
MULTI_BOARD_DEVS_OPTS = -f name=$(BOARD) --devs-yml $(LOCAL_DEVS_FILE)
endif
endif

attached_devs:
@:
$(eval ATTACHED_TARGET_LIST = $(shell $(PYTHON) $(TOP)/lib/mpy-test-ext/get_devs.py serial-number $(MULTI_BOARD_DEVS_OPTS)))
$(eval ATTACHED_TARGET_LIST = $(shell $(PYTHON) $(TOP)/lib/mpy-test-ext/devs_query.py serial_number $(MULTI_BOARD_DEVS_OPTS)))
$(eval ATTACHED_TARGETS_NUMBER = $(words $(ATTACHED_TARGET_LIST)))
$(info Number of attached targets : $(ATTACHED_TARGETS_NUMBER))
$(info List of attached targets : $(ATTACHED_TARGET_LIST))
Expand Down
54 changes: 34 additions & 20 deletions tests/ports/psoc6/ifx-mpy-hil-devs.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
- board_type: CY8CPROTO-062-4343W
board_list:
- sn: 072002F302098400
hw_ext: 0.6.0.a
- sn: 1C14031D03201400
hw_ext: 0.6.0.b
- board_type: CY8CPROTO-063-BLE
board_list:
- sn: 100D0F1400052400
hw_ext: 0.5.0.b
- sn: 03180F1400052400
hw_ext: 0.5.0.a
- board_type: CY8CKIT-062S2-AI
board_list:
- sn: 1225085A012D2400
hw_ext: 0.1.0.a
- sn: 1A0A095A012D2400
hw_ext: 0.1.0.b
- sn: 132119A1002E0400
hw_ext: 0.1.0.c
- name: CY8CPROTO-062-4343W
uid: 072002F302098400
features:
- 0.6.0.a

- name: CY8CPROTO-062-4343W
uid: 1C14031D03201400
features:
- 0.6.0.b

- name: CY8CPROTO-063-BLE
uid: 100D0F1400052400
features:
- 0.5.0.b

- name: CY8CPROTO-063-BLE
uid: 03180F1400052400
features:
- 0.5.0.a

- name: CY8CKIT-062S2-AI
uid: 1225085A012D2400
features:
- 0.1.0.a

- name: CY8CKIT-062S2-AI
uid: 1A0A095A012D2400
features:
- 0.1.0.b

- name: CY8CKIT-062S2-AI
uid: 132119A1002E0400
features:
- 0.1.0.c
2 changes: 1 addition & 1 deletion tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function ci_powerpc_build {
########################################################################################
# ports/psoc6

MPY_MTB_CI_DOCKER_VERSION=0.5.0
MPY_MTB_CI_DOCKER_VERSION=0.6.0

function ci_psoc6_setup {
# Access to serial device
Expand Down
Loading