launch.json 398 B

12345678910111213141516
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "cwd": "${workspaceRoot}",
  6. "executable": "rt-thread.elf",
  7. "name": "Debug MAX",
  8. "request": "launch",
  9. "type": "cortex-debug",
  10. "servertype": "jlink",
  11. "interface": "swd",
  12. "device": "NRF52840_XXAA",
  13. "runToMain": true
  14. },
  15. ]
  16. }