diff options
| author | Luke Hoersten <[email protected]> | 2021-05-30 11:00:27 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2021-05-30 11:00:27 -0500 |
| commit | ea05037258993adc5707333696255da0bf9e40ad (patch) | |
| tree | a7b145e20062583de613f3d2aaf708194821c5db /.vscode | |
| parent | cdadb059ccc5577de4bb65660938914a3a245a60 (diff) | |
Doorbell interrupts working.
GPIO cannot do both ADC and ISR so split the pins.
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 1 | ||||
| -rw-r--r-- | .vscode/settings.json | 11 |
2 files changed, 9 insertions, 3 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 9033567..516e65a 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -5,7 +5,6 @@ "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "macos-gcc-x64", - "compileCommands": "${workspaceFolder}/build/compile_commands.json", "includePath": [ "${config:idf.espIdfPath}/components/**", "${config:idf.espIdfPath}/../esp-homekit-sdk/components/**", diff --git a/.vscode/settings.json b/.vscode/settings.json index 8ccd8ea..09ca793 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,8 +11,15 @@ "files.associations": { "stdio.h": "c", "hap.h": "c", - "freertos.h": "c" + "freertos.h": "c", + "intercom.h": "c", + "bell.h": "c", + "hap_apple_servs.h": "c", + "hap_apple_chars.h": "c", + "adc.h": "c" }, "git.ignoreLimitWarning": true, - "cmake.configureOnOpen": false + "cmake.configureOnOpen": false, + "idf.port": "/dev/cu.usbserial-01D93418", + "idf.flashType": "UART" }
\ No newline at end of file |
