It appears that CCS supports some kind of "remote debugging" using the DSS tools ( https://dev.ti.com/tirex/explore/node?node=AEvH2m2WktsK7yoAuLqLWA__FUz-xrs__LATEST ).
[ Machine 1 : CCS IDE + Debugger ] ---> [ Machine 2 :DSS + Debugger + USB Debugger ] |--USB--| [ LAUNCHXL-F280039C ]
I am able to launch the "test_server.js" , and it's listening on port 4444 as a server on machine 2 in this example ^ :
:~/work/debug_server/ccs_base/scripting/examples/TestServer$ ../../bin/dss.sh test_server.js
Server startup...
Server started.
Session[0] opened on port 4444.
Error: 'bug_cmd' is not a function and will not be added.
TestServer is ready.
I have confirmed that the server is responding properly by connecting with a RAW TCP socket (telnet) and sending junk messages.
However, it's not clear how I connect the IDE to the debugger on machine 1. All debuggers seem to need a .ccxml file -- I seem to be missing one that goes with the DSS (maybe?). How do I add the 1.2.3.4:4444 (ip:port) to the CCS IDE so this can program and debug ?