File tree Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 4545cd ../klib/
4646
4747echo " Copying example settings.json"
48- cp .vscode/settings.json.example .vscode/settings.json
48+ cp .vscode/settings.json.example .vscode/settings.json
49+ cp .vscode/launch.json.example .vscode/launch.json
50+ cp .vscode/c_cpp_properties.json.example .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+ {
4+ "name" : " gcc-arm" ,
5+ "includePath" : [
6+ " ${workspaceFolder}" ,
7+ " ${workspaceFolder}/targets/arm" ,
8+ " ${workspaceFolder}/klib" ,
9+ " ${workspaceFolder}/targets/chip/${config:target_cpu}"
10+ ],
11+ "defines" : [
12+ " _DEBUG" ,
13+ " UNICODE" ,
14+ " _UNICODE" ,
15+ " TARGET_CPU=${config:target_cpu}" ,
16+ " KLIB_IRQ=irq_ram" ,
17+ " KLIB_DEFAULT_COUT=rtt"
18+ ],
19+ // "compilerPath": "COMPILER_PATH",
20+ "cStandard" : " c17" ,
21+ "cppStandard" : " c++23" ,
22+ "configurationProvider" : " ms-vscode.cmake-tools" ,
23+ "intelliSenseMode" : " gcc-arm"
24+ }
25+ ],
26+ "version" : 4
27+ }
Original file line number Diff line number Diff line change 1414 "type" : " cortex-debug" ,
1515 "runToEntryPoint" : " main" ,
1616 "servertype" : " jlink" ,
17- "armToolchainPath" : " TOOLCHAIN_PATH" ,
17+ // "armToolchainPath": "TOOLCHAIN_PATH",
1818 "rttConfig" : {
1919 "enabled" : true ,
2020 "address" : " auto" ,
3636 "request" : " attach" ,
3737 "type" : " cortex-debug" ,
3838 "servertype" : " jlink" ,
39- "armToolchainPath" : " TOOLCHAIN_PATH" ,
39+ // "armToolchainPath": "TOOLCHAIN_PATH",
4040 "rttConfig" : {
4141 "enabled" : true ,
4242 "address" : " auto" ,
You can’t perform that action at this time.
0 commit comments