import isystem.connect as ic
winidea_id = ''
def test_example():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
configCtrl = ic.CConfigurationController(connMgr)
optSoC = configCtrl.ide_SoC()
print(f"Option URL value: {optSoC.URL()}")
optSoC = configCtrl.ide_SoC("MCU")
print(f"Option URL value: {optSoC.URL()}")
if __name__ == "__main__":
test_example()