Files
fun_gen_amp_test/.vscode/launch.json
2023-10-01 10:45:12 +02:00

61 lines
2.1 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": "stm32f303re-freertos",
"cwd": "${workspaceFolder}",
"executable": "./build/${workspaceFolderBasename}.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "jlink",
"device": "STM32F303RE",
"interface": "swd",
"svdFile": "STM32F303xE.svd",
"preLaunchTask": "${defaultBuildTask}",
"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"
// }
// ]
// }
// ]
}
]
}