winIDEA SDK
test_storage_read_hash.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
7
8winidea_id = ''
9
10
11def test_readHash():
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
14
15 devName = "ST STM32C0x6 (32 kB)"
16 optCtrl = ic.COptionController(connMgr, ic.CStorageDeviceFactory.DEVICES_OPT_URL)
17 devIndex = optCtrl.index_of("Name", devName)
18 print("Index of the item whose 'Name' attribute has value " + devName + f": {devIndex}")
19
20 storageCtrl = ic.CStorageDeviceFactory.makeDevice(connMgr, ic.EStorageDevice_EmbeddedFlashDevice, devIndex)
21
22 print(f"Device with index {devIndex} yield a MURMUR2 hash:")
23 data = ic.VectorBYTE(4)
24 storageCtrl.readHash(data)
25 for index in range(4):
26 print(f"{data[index]} ", end="")
27
28 print(f"\nDevice with index {devIndex} yield a MURMUR2 hash (0x08000000, 16 bytes):")
29 data = ic.VectorBYTE(4)
30 storageCtrl.readHash(ic.IConnectUMI.wProgDevice, 0x08000000, 16, data)
31 storageCtrl.readHash(data)
32 for index in range(4):
33 print(f"{data[index]} ", end="")
34
35
36if __name__ == "__main__":
37 test_readHash()