writing code for micro-lab due in 3hrs

profileBob_Usher
launch.json

{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // monitor reset halt "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/led.axf", "externalConsole": false, "args": [], "cwd": "${workspaceFolder}", "environment": [], "preLaunchTask":"${defaultBuildTask}", "miDebuggerServerAddress": "localhost:3333", "debugServerPath": "openocd.exe", "debugServerArgs": "-f board/ek-tm4c123gxl.cfg", "serverStarted": "Info : ICDI Firmware version", "filterStderr": true, "filterStdout": false, "MIMode": "gdb", "miDebuggerPath": "arm-none-eabi-gdb.exe", "miDebuggerArgs": "${workspaceFolder}/led.axf", "stopAtEntry": true, "logging": { //"engineLogging": true, //"trace": true, //"traceResponse": true }, "targetArchitecture": "arm", "setupCommands": [ ], "customLaunchSetupCommands": [ {"text": "target remote localhost:3333", "description": "", "ignoreFailures": false}, {"text": "monitor reset halt", "description": "", "ignoreFailures": false}, {"text": "load", "description": "", "ignoreFailures": false} {"text": "tbreak main", "description": "", "ignoreFailures": false} ], "launchCompleteCommand": "exec-continue", } ] }