Tool/software: Code Composer Studio
Is it possible to connect to i.e. "DebugServer.1" from multiple processes? I want to start a DSS session in one process, and connect to it as needed in other spawned processes to control the target in an annoyingly-designed automated test scenario.
In my experimentation, I connected to "DebugServer.1" in process A and connected to a target, uploaded code, etc and then am sitting in a loop so the process doesn't die. In process B, I again connect to "DebugServer.1" (which I WOULD THINK is the same server), on which I call "getConfig()" but instead of returning the loaded configuration, it returns "null" implying that I have NOT indeed connected to the same server.
I assume I am misunderstanding how DSS is supposed to work.
Worst case, I could open a pipe to the JS process, but I would like to take advantage of a client-server type communication if possible.
Thanks,
-Brandon