set rtos mode in launch config (#4581)

* set rtos

* casing matters
This commit is contained in:
Matthew Kennedy 2022-09-15 05:29:38 -07:00 committed by GitHub
parent 9218820cda
commit 46f5fbf11f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

4
.vscode/launch.json vendored
View File

@ -61,6 +61,7 @@
"svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F405.svd", "svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F405.svd",
"servertype": "openocd", "servertype": "openocd",
"configFiles": ["interface/stlink.cfg", "target/stm32f4x.cfg"], "configFiles": ["interface/stlink.cfg", "target/stm32f4x.cfg"],
"rtos": "auto",
"runToMain": true "runToMain": true
}, },
{ {
@ -74,6 +75,7 @@
"svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F427.svd", "svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F427.svd",
"servertype": "openocd", "servertype": "openocd",
"configFiles": ["interface/stlink.cfg", "target/stm32f4x.cfg"], "configFiles": ["interface/stlink.cfg", "target/stm32f4x.cfg"],
"rtos": "auto",
"runToMain": true "runToMain": true
}, },
{ {
@ -87,6 +89,7 @@
"svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F7x7.svd", "svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32F7x7.svd",
"servertype": "openocd", "servertype": "openocd",
"configFiles": ["interface/stlink.cfg", "target/stm32f7x.cfg"], "configFiles": ["interface/stlink.cfg", "target/stm32f7x.cfg"],
"rtos": "auto",
"runToMain": true "runToMain": true
}, },
{ {
@ -100,6 +103,7 @@
"svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32H743x.svd", "svdFile": "${workspaceRoot}/firmware/ext/cmsis-svd/data/STMicro/STM32H743x.svd",
"servertype": "openocd", "servertype": "openocd",
"configFiles": ["interface/stlink.cfg", "target/stm32h7x.cfg"], "configFiles": ["interface/stlink.cfg", "target/stm32h7x.cfg"],
"rtos": "auto",
"runToMain": true "runToMain": true
} }
] ]