2
This commit is contained in:
parent
229d33d9e9
commit
8b8ef15dd9
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,3 @@
|
|||||||
.vscode
|
|
||||||
build
|
build
|
||||||
components/.DS_Store
|
components/.DS_Store
|
||||||
components/zh_onewire/.DS_Store
|
components/zh_onewire/.DS_Store
|
||||||
sdkconfig
|
|
||||||
sdkconfig.old
|
|
49
.vscode/c_cpp_properties.json
vendored
Normal file
49
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "MAC_ESP32",
|
||||||
|
"compilerPath": "${config:idf.toolsPath}/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc",
|
||||||
|
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"/Users/alexey.zholtikov/esp/v5.2/esp-idf/components/**"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "MAC_ESP8266",
|
||||||
|
"compilerPath": "/Users/alexey.zholtikov/.espressif/tools/xtensa-lx106-elf/esp-2020r3-49-gd5524c1-8.4.0/xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-8.4.0",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"${workspaceFolder}/build/include/*",
|
||||||
|
"/Users/alexey.zholtikov/esp/ESP8266_RTOS_SDK/components/**",
|
||||||
|
"/Users/alexey.zholtikov/esp/ESP8266_RTOS_SDK/components/freertos/port/esp8266/include"
|
||||||
|
],
|
||||||
|
"defines": [
|
||||||
|
"__ESP_FILE__"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "LINUX_ESP32",
|
||||||
|
"compilerPath": "/home/alexey-zholtikov/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc",
|
||||||
|
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"/home/alexey-zholtikov/esp/esp-idf/components/**"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "LINUX_ESP8266",
|
||||||
|
"compilerPath": "/home/alexey-zholtikov/.espressif/tools/xtensa-lx106-elf/esp-2020r3-49-gd5524c1-8.4.0/xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-8.4.0",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"${workspaceFolder}/build/include/*",
|
||||||
|
"/home/alexey-zholtikov/esp/ESP8266_RTOS_SDK/components/**",
|
||||||
|
"/home/alexey-zholtikov/esp/ESP8266_RTOS_SDK/components/freertos/port/esp8266/include"
|
||||||
|
],
|
||||||
|
"defines": [
|
||||||
|
"__ESP_FILE__"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
51
.vscode/settings.json
vendored
Normal file
51
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"cmake.configureOnOpen": false,
|
||||||
|
"files.associations": {
|
||||||
|
"freertos.h": "c",
|
||||||
|
"task.h": "c",
|
||||||
|
"esp_system.h": "c",
|
||||||
|
"portable.h": "c",
|
||||||
|
"portmacro.h": "c",
|
||||||
|
"xtensa_rtos.h": "c",
|
||||||
|
"xtensa_timer.h": "c",
|
||||||
|
"sdkconfig.h": "c",
|
||||||
|
"esp_err.h": "c",
|
||||||
|
"esp_ota_ops.h": "c",
|
||||||
|
"zh_nvs.h": "c",
|
||||||
|
"zh_gpio.h": "c",
|
||||||
|
"zh_espnow.h": "c",
|
||||||
|
"zh_json.h": "c",
|
||||||
|
"esp_app_format.h": "c",
|
||||||
|
"esp_now.h": "c",
|
||||||
|
"esp_timer.h": "c",
|
||||||
|
"esp_wifi.h": "c",
|
||||||
|
"string.h": "c",
|
||||||
|
"event_groups.h": "c",
|
||||||
|
"gpio.h": "c",
|
||||||
|
"nvs.h": "c",
|
||||||
|
"*.inc": "c",
|
||||||
|
"nvs_flash.h": "c",
|
||||||
|
"esp_netif.h": "c",
|
||||||
|
"queue.h": "c",
|
||||||
|
"stdint.h": "c",
|
||||||
|
"stdio.h": "c",
|
||||||
|
"stdbool.h": "c",
|
||||||
|
"zh_onewire.h": "c",
|
||||||
|
"zh_config.h": "c",
|
||||||
|
"tcpip_adapter.h": "c",
|
||||||
|
"dhcpserver.h": "c",
|
||||||
|
"ip_addr.h": "c",
|
||||||
|
"array": "c",
|
||||||
|
"string": "c",
|
||||||
|
"string_view": "c",
|
||||||
|
"stdlib.h": "c",
|
||||||
|
"esp_heap_caps.h": "c",
|
||||||
|
"zh_vector.h": "c"
|
||||||
|
},
|
||||||
|
"idf.adapterTargetName": "esp32",
|
||||||
|
"idf.port": "/dev/cu.usbserial-0001",
|
||||||
|
"idf.flashType": "UART",
|
||||||
|
"idf.openOcdConfigs": [
|
||||||
|
"board/esp32-wrover-kit-3.3v.cfg"
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user