@@ -184,22 +184,22 @@ func getDebugProperties(req *rpc.GetDebugConfigRequest, pme *packagemanager.Expl
184
184
}
185
185
}
186
186
187
- cortexDebugCustomJson := map [string ]string {}
187
+ customConfigs := map [string ]string {}
188
188
if cortexDebugProps := debugProperties .SubTree ("cortex-debug.custom" ); cortexDebugProps .Size () > 0 {
189
- cortexDebugCustomJson ["cortex-debug" ] = convertToJsonMap (cortexDebugProps )
189
+ customConfigs ["cortex-debug" ] = convertToJsonMap (cortexDebugProps )
190
190
}
191
191
return & rpc.GetDebugConfigResponse {
192
- Executable : debugProperties .Get ("executable" ),
193
- Server : server ,
194
- ServerPath : debugProperties .Get ("server." + server + ".path" ),
195
- ServerConfiguration : & serverConfiguration ,
196
- SvdFile : debugProperties .Get ("svd_file" ),
197
- Toolchain : toolchain ,
198
- ToolchainPath : debugProperties .Get ("toolchain.path" ),
199
- ToolchainPrefix : debugProperties .Get ("toolchain.prefix" ),
200
- ToolchainConfiguration : & toolchainConfiguration ,
201
- CustomConfigurationsJson : cortexDebugCustomJson ,
202
- Programmer : req .GetProgrammer (),
192
+ Executable : debugProperties .Get ("executable" ),
193
+ Server : server ,
194
+ ServerPath : debugProperties .Get ("server." + server + ".path" ),
195
+ ServerConfiguration : & serverConfiguration ,
196
+ SvdFile : debugProperties .Get ("svd_file" ),
197
+ Toolchain : toolchain ,
198
+ ToolchainPath : debugProperties .Get ("toolchain.path" ),
199
+ ToolchainPrefix : debugProperties .Get ("toolchain.prefix" ),
200
+ ToolchainConfiguration : & toolchainConfiguration ,
201
+ CustomConfigs : customConfigs ,
202
+ Programmer : req .GetProgrammer (),
203
203
}, nil
204
204
}
205
205
0 commit comments