Files
PortableFuncGen/firmware/.vscode/launch.json
2023-03-26 11:26:03 +02:00

61 lines
2.0 KiB
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
"version": "0.2.0",
"configurations": [
{
"name": "Cortex Debug Nucloe",
"cwd": "${workspaceFolder}/func_gen_stm32f303re_nucleo/",
"executable": "./build/func_gen_stm32f303re_nucleo.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "jlink",
"device": "STM32F303RE",
"interface": "swd",
"runToMain": true,
"svdFile": "STM32F303xE.svd",
"rttConfig": {
"enabled": true,
"address": "auto",
"decoders": [
{
"label": "RTT stdout",
"port": 0,
"type": "console",
"timestamp": true
},
{
"label": "RTT graph",
"port": 0,
"encoding": "unsigned",
"graphId": "1",
"scale": 1
}
]
},
"graphConfig": [
{
"label": "Graph 1",
"type": "realtime",
"minimum": 0,
"maximum": 65535,
"timespan": 30,
"plots": [
{
"graphId": "1",
"label": "data 1",
"color": "#53753c",
},
{
"graphId": "2",
"label": "data 2",
"color": "#955f20"
}
]
}
]
}
]
}