winIDEA SDK
test_data_areatype2str.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2#
3# (c) TASKING Germany GmbH, 2023
4
5import isystem.connect as ic
6
7winidea_id = ''
8
9
10EXAMPLE_TRD_FILE_NAME = "example.trd"
11
12
13def test_dataAreaType2Str():
14 connMgr = ic.ConnectionMgr()
15 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
16
17 profCtrl = ic.CProfilerController2(connMgr, EXAMPLE_TRD_FILE_NAME, "u")
18 profCtrl.waitUntilLoaded(5000, isThrow=True)
19
20 nameStr = profCtrl.dataAreaType2Str(ic.CProfilerController2.EDATState)
21 print(f"Human readable name of variable 'state' mode: {nameStr}")
22 profCtrl.close()
23
24
25if __name__ == "__main__":
26 test_dataAreaType2Str()