Hi,
I'm trying to develop a console script that would load two cores and run them in synchronous mode with a C66xx.
I'm able to do that through the Class simultaneous, but I have some questions.
Now, I want to read/write some data from/to memory through a DSS script. I know that I can do that with memory.load / memory.write or memory.read class, but for do that I have to set a breackpoint.
What I want to know is that there is some manner to write data in memory (for example a binary file with memory.loadRaw() ) without using a breakpoints.
Secondly, I would like to know if there is a manner from the DSS script to interact with the code when it is in execution, without the use of breakpoints.
I try to explain what I want to do: after running the two cores with target.runAsynch() I would like that when something happens in the code in execution on one core, the execution is halted and the DSS script could do something (for example loading some data in memory) and then resume the execution on the core without restarting it. All this without the use of breakpoints. Is it possible to do this? and if it is how can I do that?
Thanks.