mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-16 21:23:33 +02:00
afdc1fa594
- GPIO15 active-low button input with internal pull-up - 20ms software debounce via busy-wait confirmation - LED mirrors button state, UART reports edge transitions - New gpio_config_input_pullup() in GPIO driver - 1555B FLASH, 13 source files, zero warnings
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
|
|
} |