This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
GUI生成的脚本文件。
GUI Composer export automatically generates a DSS script that performs system initialization tasks. The default script starts a debugger, connects, loads a program and runs the target. In addition to performing these steps the debugger mode is enabled to halt the CPU before making a target access. This allows for greatest compatibility across various devices. However, if your application requires non-intrusive target access and your HW (device/emulator) supports it then please modify "appInitScript.js" and comment out or remove this line:
session.options.setBoolean("UseLegacyStopMode", true);
Furthermore, some targets may require a special mode to be enabled to allow non-intrusive access. e.g. C2000 family of devices requires following lines to be added to "appInitScript.js" between load program and run program steps.
print("Enabling Realtime\n"); session.expression.evaluate("ST1.DBGM = 0"); session.expression.evaluate("GEL_EnableRealtime()");
这段话里面的non-instrusive access是什么意思?