ttn-esp32/.vscode/c_cpp_properties.json

37 lines
1.6 KiB
JSON
Raw Normal View History

2018-07-15 22:11:11 +02:00
{
"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",
2018-07-20 21:19:53 +02:00
"${IDF_PATH}/components/nvs_flash/include",
2018-07-15 22:11:11 +02:00
"${IDF_PATH}/components/soc/include",
"${IDF_PATH}/components/soc/esp32/include",
"${IDF_PATH}/components/tcpip_adapter/include",
2018-10-04 20:07:09 +02:00
"${IDF_PATH}/components/mbedtls/mbedtls/include",
2018-07-23 16:59:38 +02:00
"${workspaceRoot}/examples/provisioning/build/include",
2018-07-17 19:55:39 +02:00
"${workspaceRoot}/examples/hello_world/build/include",
2018-07-23 16:59:38 +02:00
"${workspaceRoot}/examples/send_recv/build/include",
2018-07-15 22:11:11 +02:00
"${workspaceRoot}/include",
"${workspaceRoot}/src"
],
2018-07-15 22:11:11 +02:00
"defines": [
"_DEBUG"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
2018-10-27 14:45:55 +02:00
"cppStandard": "c++11",
"intelliSenseMode": "clang-x64",
"compileCommands": "${workspaceFolder}/examples/hello_world/build/compile_commands.json"
2018-07-15 22:11:11 +02:00
}
],
"version": 4
}