ttn-esp32/.vscode/c_cpp_properties.json
Manuel Bleichenbacher 585c4b80bb Configuration of UART
2018-07-23 16:59:38 +02:00

35 lines
1.4 KiB
JSON

{
"configurations": [
{
"name": "ESP32",
"includePath": [
"${XTENSA_TOOLCHAIN}/xtensa-esp32-elf/include",
"${XTENSA_TOOLCHAIN}/lib/gcc/xtensa-esp32-elf/5.2.0/include",
"${IDF_PATH}/components/driver/include",
"${IDF_PATH}/components/esp32/include",
"${IDF_PATH}/components/freertos/include",
"${IDF_PATH}/components/heap/include",
"${IDF_PATH}/components/log/include",
"${IDF_PATH}/components/lwip/include/lwip",
"${IDF_PATH}/components/lwip/include/lwip/port",
"${IDF_PATH}/components/nvs_flash/include",
"${IDF_PATH}/components/soc/include",
"${IDF_PATH}/components/soc/esp32/include",
"${IDF_PATH}/components/tcpip_adapter/include",
"${workspaceRoot}/examples/provisioning/build/include",
"${workspaceRoot}/examples/hello_world/build/include",
"${workspaceRoot}/examples/send_recv/build/include",
"${workspaceRoot}/include",
"${workspaceRoot}/src"
],
"defines": [
"_DEBUG"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}