{ "version": "0.2.0", "configurations": [ { "name": "Debug HERV (Nu-Link)", "type": "cortex-debug", "request": "launch", "servertype": "openocd", "cwd": "${workspaceFolder}", "executable": "${workspaceFolder}/build/HERV.elf", "device": "NANO100SE3BN", "configFiles": [ "openocd.cfg" ], "runToEntryPoint": "main", "preLaunchTask": "build", "showDevDebugOutput": "none" // SVD 파일 있으면 아래 주석 풀고 경로 지정 (디버그시 레지스터 이름으로 표시) // "svdFile": "${workspaceFolder}/Nano100B.svd" }, { "name": "Attach to HERV (Nu-Link)", "type": "cortex-debug", "request": "attach", "servertype": "openocd", "cwd": "${workspaceFolder}", "executable": "${workspaceFolder}/build/HERV.elf", "device": "NANO100SE3BN", "configFiles": [ "openocd.cfg" ] } ] }