mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-22 23:49:41 +02:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "ARM GCC",
|
|
"includePath": [
|
|
"${workspaceFolder}/Inc/**"
|
|
],
|
|
"defines": [
|
|
"__GNUC__",
|
|
"__ARM_ARCH_8M_MAIN__",
|
|
"__ARMCC_VERSION"
|
|
],
|
|
"compilerPath": "${userHome}/.pico-sdk/toolchain/14_2_Rel1/bin/arm-none-eabi-gcc",
|
|
"compileCommands": "${workspaceFolder}/compile_commands.json",
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++17",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compilerArgs": [
|
|
"-mcpu=cortex-m33",
|
|
"-mthumb"
|
|
]
|
|
},
|
|
{
|
|
"name": "ARM GCC (Windows)",
|
|
"includePath": [
|
|
"${workspaceFolder}/Inc/**"
|
|
],
|
|
"defines": [
|
|
"__GNUC__",
|
|
"__ARM_ARCH_8M_MAIN__",
|
|
"__ARMCC_VERSION"
|
|
],
|
|
"compilerPath": "${env:USERPROFILE}/.pico-sdk/toolchain/14_2_Rel1/bin/arm-none-eabi-gcc.exe",
|
|
"compileCommands": "${workspaceFolder}/compile_commands.json",
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++17",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compilerArgs": [
|
|
"-mcpu=cortex-m33",
|
|
"-mthumb"
|
|
]
|
|
}
|
|
],
|
|
"version": 4
|
|
} |