we have lauterbach scripts were we place breakpoints using python scripts at specific address lines of code in a function and the subsequent lines of the function by manually finding the address locations.
#Breakpoint is set at the entry point of default_check() TP_api.set_Breakpoint("0x40004854",30)
#Breakpoint is set at the line 'for i=0..." of default_check() TP_api.set_Breakpoint("0x40004864",30)
But when the build changes, the address locations have to be updated manually again. Is it possible to place a breakpoint using the function name 'default_check' and place subsequent breakpoints as 'offset' from the entry function address location.