Skip to content

Commit 4108bd2

Browse files
Fix the projectTarget name so that it Launches correctly. (#319)
* fixed project target name * fix formatting * fix spacing again * spacing * spacing * fix .vscode files too to be consistent
1 parent 3a5855b commit 4108bd2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

STMicroelectronics/B-L4S5I-IOT01A/.vs/launch.vs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"configurations": [
44
{
55
"project": "CMakeLists.txt",
6-
"projectTarget": "stm32l4S5_azure_iot.elf (app\\stm32l4S5_azure_iot.elf)",
6+
"projectTarget": "stm32l4s5_azure_iot.elf (app\\stm32l4s5_azure_iot.elf)",
77
"name": "Launch",
88
"type": "cppdbg",
99
"request": "launch",

STMicroelectronics/B-L4S5I-IOT01A/.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"type": "cppdbg",
2121
"request": "launch",
2222
"cwd": "${workspaceFolder}",
23-
"program": "${workspaceFolder}/build/app/stm32l4S5_azure_iot.elf",
23+
"program": "${workspaceFolder}/build/app/stm32l4s5_azure_iot.elf",
2424
"MIMode": "gdb",
2525
"miDebuggerPath": "arm-none-eabi-gdb",
2626
"miDebuggerServerAddress": "localhost:3333",

STMicroelectronics/B-L4S5I-IOT01A/.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"label": "Flash",
66
"type": "shell",
7-
"command": "openocd -f board/stm32l4discovery.cfg -c \"program build/app/stm32l4S5_azure_iot.elf verify\" -c \"reset halt\" -c shutdown",
7+
"command": "openocd -f board/stm32l4discovery.cfg -c \"program build/app/stm32l4s5_azure_iot.elf verify\" -c \"reset halt\" -c shutdown",
88
"windows": {
99
"options": {
1010
"shell": {

0 commit comments

Comments
 (0)