File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 6767 "port" : " 3333"
6868 },
6969 "cmsis" : {
70- "cbuildRunPath " : " ${command:cmsis-csolution.getCbuildRunPath }"
70+ "cbuildRunFile " : " ${command:cmsis-csolution.getCbuildRunFile }"
7171 }
7272 }
7373 ],
9393 "port" : " 3333"
9494 },
9595 "cmsis" : {
96- "cbuildRunPath " : " ^\"\\ ${command:cmsis-csolution.getCbuildRunPath }\" "
96+ "cbuildRunFile " : " ^\"\\ ${command:cmsis-csolution.getCbuildRunFile }\" "
9797 }
9898 }
9999 }
193193 "description" : " Configures CMSIS Debugger settings." ,
194194 "additionalProperties" : false ,
195195 "properties" : {
196- "cbuildRunPath " : {
196+ "cbuildRunFile " : {
197197 "type" : " string" ,
198198 "description" : " Path to *.cbuild-run.yml debug configuration file generated with CMSIS-Toolbox."
199199 }
209209 "description" : " Configures CMSIS Debugger settings." ,
210210 "additionalProperties" : false ,
211211 "properties" : {
212- "cbuildRunPath " : {
212+ "cbuildRunFile " : {
213213 "type" : " string" ,
214214 "description" : " Path to *.cbuild-run.yml debug configuration file generated with CMSIS-Toolbox."
215215 }
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ interface TargetConfiguration {
5757} ;
5858
5959interface CMSISConfiguration {
60- cbuildRunPath : string ;
60+ cbuildRunFile : string ;
6161}
6262
6363export interface GDBTargetConfiguration extends vscode . DebugConfiguration {
Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ export class PyocdConfigurationProvider implements vscode.DebugConfigurationProv
6262 }
6363 // cbuild-run (ToDo: comment in the code when pyOCD supports it)
6464 /*
65- const cbuildRunPath = debugConfiguration.cmsis?.cbuildRunPath ;
66- if (await this.shouldAppendParam(parameters, '--cbuild-run') && cbuildRunPath ) {
65+ const cbuildRunFile = debugConfiguration.cmsis?.cbuildRunFile ;
66+ if (await this.shouldAppendParam(parameters, '--cbuild-run') && cbuildRunFile ) {
6767 parameters.push('--cbuild-run');
68- parameters.push(`${cbuildRunPath }`);
68+ parameters.push(`${cbuildRunFile }`);
6969 }
7070 */
7171 return debugConfiguration ;
You can’t perform that action at this time.
0 commit comments