winIDEA SDK
Loading...
Searching...
No Matches
test_delete_all_hwbp.py
# This script is licensed under BSD License, see file LICENSE.txt, or search for `License` in the SDK online help.
# (c) TASKING Germany GmbH, 2023
#
# This Pyton script is used to delete all hardware breakpoints.
import isystem.connect as ic
winidea_id = ''
def test_deleteAllHWBP():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
ic.CExecutionController(connMgr).reset()
bpCtrl = ic.CBreakpointController(connMgr)
bpCtrl.setHWBP(ic.IConnectDebug.bHW_accRD,
ic.IConnectDebug.bHW_SizeDefault,
ic.IConnectDebug.bHW_DataLSB0,
True, # monitor all addresses of the symbol
"mainLoopCounter",
42) # compare value
bpCtrl.setHWBP(ic.IConnectDebug.bHW_accRD,
ic.IConnectDebug.bHW_SizeDefault,
ic.IConnectDebug.bHW_DataLSB0,
0, # main memory space
0x20000400,
0) # compare value
bpCtrl.deleteAllHWBP()
print("All HW BPs deleted.")
if __name__ == "__main__":
test_deleteAllHWBP()