init
This commit is contained in:
61
.vscode/launch.json
vendored
Normal file
61
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
// 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": "STM32G0B1RE",
|
||||
"interface": "swd",
|
||||
"svdFile": "STM32G0B1.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"
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// ]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user