5import isystem.connect
as ic
11def test_ide_SoC_files():
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15 cfgCtrl = ic.CConfigurationController(connMgr)
17 optCtrl = cfgCtrl.ide_SoC_files(
"MCU")
18 print(f
"URL of the SoC 'MCU' download files: {optCtrl.URL()}")
19 print(f
"Path of the first (at index 0) download file: {optCtrl.at(0).get('Path')}")
22if __name__ ==
"__main__":