From 94528c7e582e8358efa409f2f1bf70837a038a47 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 30 Jul 2020 22:11:08 +0200 Subject: [PATCH] CCID_Tests: Fix USB VendorID The VendorID of the sysmoOCTSIM is 0x1d50, not 0x1df0. Change-Id: Id0eda6e661bca6bed7367c3af1a38b795ea959b0 --- ccid/CCID_Tests.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccid/CCID_Tests.ttcn b/ccid/CCID_Tests.ttcn index 22560250a..f7423cdf4 100644 --- a/ccid/CCID_Tests.ttcn +++ b/ccid/CCID_Tests.ttcn @@ -17,7 +17,7 @@ import from CCID_Templates all; import from CCID_Emulation all; modulepar { - USB_Device_Match mp_usb_dev_match := { vid_pid := { vid := '1df0'H, pid := '6141'H } }; + USB_Device_Match mp_usb_dev_match := { vid_pid := { vid := '1d50'H, pid := '6141'H } }; integer mp_use_slot_count := 8; boolean mp_test_power_off := true; boolean mp_quirk_resetpar_returns_slotsts := false;