├── .gitattributes ├── .gitignore ├── 10_ws2812_RMT ├── Makefile ├── README.md ├── components │ └── ws2812 │ │ ├── component.mk │ │ ├── include │ │ └── ws2812.h │ │ └── lib │ │ └── libws2812.a ├── main │ ├── component.mk │ └── main.c ├── sdkconfig └── sdkconfig.old ├── 11_Bt_Speaker ├── ProjectBtSpeaker │ ├── CMakeLists.txt │ ├── Makefile │ ├── main │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── play_bt_music_example.c │ ├── partitions_bt_sink_example.csv │ ├── sdkconfig │ ├── sdkconfig.defaults │ └── sdkconfig.old ├── README.txt └── bluetooth_service │ ├── CMakeLists.txt │ ├── bluetooth_service.c │ ├── bt_keycontrol.c │ ├── component.mk │ └── include │ ├── bluetooth_service.h │ └── bt_keycontrol.h ├── 12_dns_server ├── .gitignore ├── Makefile ├── README.md ├── components │ ├── component.mk │ ├── include │ │ ├── dns_server.h │ │ └── web_server.h │ └── src │ │ ├── dns_server.c │ │ └── web_server.c ├── main │ ├── Kconfig.projbuild │ ├── component.mk │ └── main.c ├── sdkconfig └── sdkconfig.old ├── 13_captive_portal ├── CMakeLists.txt ├── Makefile ├── components │ └── captive │ │ ├── component.mk │ │ ├── dns_server │ │ ├── my_dns_server.c │ │ └── my_dns_server.h │ │ └── webserver │ │ ├── index 1.html │ │ ├── index.html │ │ ├── webserver.c │ │ └── webserver.h ├── main │ ├── component.mk │ └── main.c ├── sdkconfig └── sdkconfig.old ├── 14_ReadFromCsvSingle ├── CMakeLists.txt ├── Makefile ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── user_main.c ├── partitions_esp32.csv ├── sdkconfig └── userInfo.csv ├── 15_XBlufi ├── CMakeLists.txt ├── Makefile ├── components │ └── xBlufi │ │ ├── component.mk │ │ ├── include │ │ └── xBlufi.h │ │ └── lib │ │ └── libxBlufi.a ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c ├── sdkconfig └── sdkconfig.old ├── 16_mbedtls_md5_aes ├── CMakeLists.txt ├── Makefile ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c ├── sdkconfig └── sdkconfig.old ├── 17_light_utils_pwm ├── CMakeLists.txt ├── Makefile ├── components │ └── light_driver │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ ├── iot_led.h │ │ ├── iot_light.h │ │ ├── light_driver.h │ │ └── light_err.h │ │ ├── iot_led.c │ │ ├── iot_light.c │ │ └── light_driver.c ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── component.mk │ └── light_example.c ├── partitions.csv └── sdkconfig.defaults ├── 18_dht11 ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ └── dht11 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── dht11.c │ │ └── include │ │ └── dht11.h └── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── component.mk │ └── main.c ├── 19_s2_ws2812 ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ └── led_strip │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ └── led_strip.h │ │ └── src │ │ └── led_strip_rmt_ws2812.c ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── component.mk │ └── main.c └── sdkconfig.defaults ├── 1_hello_world ├── Makefile ├── README.md ├── alreadyBin │ ├── bootloader.bin │ ├── hello-world.bin │ └── partitions_singleapp.bin └── main │ ├── component.mk │ └── hello_world_main.c ├── 20_RFID_rc522 ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ └── RC522 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ └── rc522.h │ │ └── rc522.c └── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c ├── 21_s2_sht20 ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ └── SHT20 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ └── sht20.h │ │ └── library │ │ └── sht20.c └── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── component.mk │ └── slip_client_main.c ├── 22_take_pic_http_to_cloud ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── conversions │ │ ├── esp_jpg_decode.c │ │ ├── include │ │ │ ├── esp_jpg_decode.h │ │ │ └── img_converters.h │ │ ├── jpge.cpp │ │ ├── private_include │ │ │ ├── jpge.h │ │ │ └── yuv.h │ │ ├── to_bmp.c │ │ ├── to_jpg.cpp │ │ └── yuv.c │ ├── driver │ │ ├── camera.c │ │ ├── include │ │ │ ├── esp_camera.h │ │ │ └── sensor.h │ │ ├── private_include │ │ │ ├── camera_common.h │ │ │ ├── sccb.h │ │ │ └── xclk.h │ │ ├── sccb.c │ │ ├── sensor.c │ │ └── xclk.c │ ├── examples │ │ └── take_picture.c │ ├── idf_component.yml │ ├── library.json │ └── sensors │ │ ├── nt99141.c │ │ ├── ov2640.c │ │ ├── ov3660.c │ │ ├── ov5640.c │ │ ├── ov7670.c │ │ ├── ov7725.c │ │ └── private_include │ │ ├── nt99141.h │ │ ├── nt99141_regs.h │ │ ├── nt99141_settings.h │ │ ├── ov2640.h │ │ ├── ov2640_regs.h │ │ ├── ov2640_settings.h │ │ ├── ov3660.h │ │ ├── ov3660_regs.h │ │ ├── ov3660_settings.h │ │ ├── ov5640.h │ │ ├── ov5640_regs.h │ │ ├── ov5640_settings.h │ │ ├── ov7670.h │ │ ├── ov7670_regs.h │ │ ├── ov7725.h │ │ └── ov7725_regs.h ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── app_wifi.c │ ├── app_wifi.h │ ├── component.mk │ └── main.c └── sdkconfig.defaults ├── 23_usb_dongle_wifi ├── CMakeLists.txt ├── Commands.md ├── README.md ├── _static │ ├── ACM.png │ ├── ESP32-S2.jpg │ ├── ESP32-S2.png │ └── ifconfig.png ├── components │ ├── FreeRTOS-Plus-CLI │ │ ├── CMakeLists.txt │ │ ├── FreeRTOS_CLI.c │ │ ├── History.txt │ │ ├── LICENSE_INFORMATION.txt │ │ ├── ReadMe.url │ │ ├── component.mk │ │ ├── include │ │ │ └── FreeRTOS_CLI.h │ │ └── readme.txt │ └── usb │ │ ├── esp_usbh_cdc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── esp_usbh_cdc.c │ │ ├── include │ │ │ └── esp_usbh_cdc.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── test_usbh_cdc.c │ │ ├── tinyusb │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── additions │ │ │ ├── include │ │ │ │ ├── tinyusb.h │ │ │ │ ├── tinyusb_types.h │ │ │ │ ├── tusb_cdc_acm.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── tusb_console.h │ │ │ │ ├── tusb_hid.h │ │ │ │ ├── tusb_msc.h │ │ │ │ ├── tusb_tasks.h │ │ │ │ └── vfs_tinyusb.h │ │ │ ├── include_private │ │ │ │ ├── cdc.h │ │ │ │ ├── descriptors_control.h │ │ │ │ └── usb_descriptors.h │ │ │ ├── src │ │ │ │ ├── cdc.c │ │ │ │ ├── descriptors_control.c │ │ │ │ ├── tinyusb.c │ │ │ │ ├── tusb_cdc_acm.c │ │ │ │ ├── tusb_console.c │ │ │ │ ├── tusb_hid.c │ │ │ │ ├── tusb_msc.c │ │ │ │ ├── tusb_tasks.c │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── vfs_tinyusb.c │ │ │ └── tusb │ │ │ │ └── src │ │ │ │ ├── class │ │ │ │ └── net │ │ │ │ │ └── net_device.c │ │ │ │ └── lib │ │ │ │ └── networking │ │ │ │ ├── ndis.h │ │ │ │ ├── rndis_protocol.h │ │ │ │ └── rndis_reports.c │ │ └── idf_component.yml │ │ └── uvc_stream │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── include │ │ ├── libuvc_def.h │ │ ├── uvc_debug.h │ │ └── uvc_stream.h │ │ ├── pictures │ │ └── 320240 │ │ │ ├── 0001.jpg │ │ │ ├── 0002.jpg │ │ │ ├── 0003.jpg │ │ │ ├── 0004.jpg │ │ │ ├── 0005.jpg │ │ │ ├── 0006.jpg │ │ │ ├── 0007.jpg │ │ │ ├── 0008.jpg │ │ │ ├── 0009.jpg │ │ │ ├── 0010.jpg │ │ │ ├── 0011.jpg │ │ │ ├── 0012.jpg │ │ │ ├── 0013.jpg │ │ │ ├── 0014.jpg │ │ │ └── 0015.jpg │ │ ├── test │ │ ├── CMakeLists.txt │ │ └── test_uvc_stream.c │ │ └── uvc_stream.c ├── main │ ├── CLI_Commands.c │ ├── CMakeLists.txt │ ├── Command_Parse.c │ ├── cmd_wifi.c │ ├── cmd_wifi.h │ ├── component.mk │ └── usb_dongle_wifi_main.c └── sdkconfig.defaults ├── 24_esp32s2_s3_camera_wechat_mini ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── conversions │ │ ├── esp_jpg_decode.c │ │ ├── include │ │ │ ├── esp_jpg_decode.h │ │ │ └── img_converters.h │ │ ├── jpge.cpp │ │ ├── private_include │ │ │ ├── jpge.h │ │ │ └── yuv.h │ │ ├── to_bmp.c │ │ ├── to_jpg.cpp │ │ └── yuv.c │ ├── driver │ │ ├── camera.c │ │ ├── include │ │ │ ├── esp_camera.h │ │ │ └── sensor.h │ │ ├── private_include │ │ │ ├── camera_common.h │ │ │ ├── sccb.h │ │ │ └── xclk.h │ │ ├── sccb.c │ │ ├── sensor.c │ │ └── xclk.c │ ├── examples │ │ └── take_picture.c │ ├── idf_component.yml │ ├── library.json │ └── sensors │ │ ├── nt99141.c │ │ ├── ov2640.c │ │ ├── ov3660.c │ │ ├── ov5640.c │ │ ├── ov7670.c │ │ ├── ov7725.c │ │ └── private_include │ │ ├── nt99141.h │ │ ├── nt99141_regs.h │ │ ├── nt99141_settings.h │ │ ├── ov2640.h │ │ ├── ov2640_regs.h │ │ ├── ov2640_settings.h │ │ ├── ov3660.h │ │ ├── ov3660_regs.h │ │ ├── ov3660_settings.h │ │ ├── ov5640.h │ │ ├── ov5640_regs.h │ │ ├── ov5640_settings.h │ │ ├── ov7670.h │ │ ├── ov7670_regs.h │ │ ├── ov7725.h │ │ └── ov7725_regs.h ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c └── sdkconfig.defaults ├── 25_esp32c3_flash_w25q32 ├── CMakeLists.txt ├── Makefile ├── README.txt ├── components │ └── flash_w25qxx │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── component.mk │ │ ├── include │ │ └── my_spi_flash.h │ │ └── my_spi_flash.c ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c └── sdkconfig.defaults ├── 26_esp32_s2_s3_https_save_get_file ├── CMakeLists.txt ├── Makefile ├── README.txt ├── main │ ├── CMakeLists.txt │ ├── component.mk │ ├── esp_http_client_example.c │ └── howsmyssl_com_root_cert.pem ├── partitions.csv └── sdkconfig.defaults ├── 27_ota_https_skip_cert_option ├── .gitignore ├── 2m_ota_partitions.csv ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ └── https_ota │ │ ├── CMakeLists.txt │ │ ├── cert │ │ └── server_root_cert.pem │ │ ├── component.mk │ │ ├── include │ │ └── https_ota.h │ │ └── src │ │ └── https_ota.c ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c └── sdkconfig.defaults ├── 2_blink_led ├── Makefile ├── README.md ├── alreadyBin │ ├── 2_blink_led.bin │ ├── bootloader.bin │ └── partitions_singleapp.bin └── main │ ├── Kconfig.projbuild │ ├── blink.c │ └── component.mk ├── 3_gpio_interrupt ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md ├── alreadyBin │ ├── 2_blink_led.bin │ ├── bootloader.bin │ └── partitions_singleapp.bin ├── build │ ├── 2_blink_led.bin │ ├── app_trace │ │ └── component_project_vars.mk │ ├── app_update │ │ └── component_project_vars.mk │ ├── aws_iot │ │ └── component_project_vars.mk │ ├── bootloader │ │ ├── bootloader.bin │ │ ├── bootloader_support │ │ │ └── component_project_vars.mk │ │ ├── component_project_vars.mk │ │ ├── esptool_py │ │ │ └── component_project_vars.mk │ │ ├── log │ │ │ └── component_project_vars.mk │ │ ├── main │ │ │ └── component_project_vars.mk │ │ ├── micro-ecc │ │ │ └── component_project_vars.mk │ │ ├── soc │ │ │ └── component_project_vars.mk │ │ └── spi_flash │ │ │ └── component_project_vars.mk │ ├── bootloader_support │ │ └── component_project_vars.mk │ ├── bt │ │ └── component_project_vars.mk │ ├── coap │ │ └── component_project_vars.mk │ ├── console │ │ └── component_project_vars.mk │ ├── cxx │ │ └── component_project_vars.mk │ ├── driver │ │ └── component_project_vars.mk │ ├── esp-tls │ │ └── component_project_vars.mk │ ├── esp32 │ │ ├── component_project_vars.mk │ │ └── esp32_out.ld │ ├── esp_adc_cal │ │ └── component_project_vars.mk │ ├── esptool_py │ │ └── component_project_vars.mk │ ├── ethernet │ │ └── component_project_vars.mk │ ├── expat │ │ └── component_project_vars.mk │ ├── fatfs │ │ └── component_project_vars.mk │ ├── freertos │ │ └── component_project_vars.mk │ ├── heap │ │ └── component_project_vars.mk │ ├── idf_test │ │ └── component_project_vars.mk │ ├── include │ │ ├── config │ │ │ ├── adc │ │ │ │ └── cal │ │ │ │ │ ├── efuse │ │ │ │ │ ├── tp │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── vref │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── lut │ │ │ │ │ └── enable.h │ │ │ ├── adc2 │ │ │ │ └── disable │ │ │ │ │ └── dac.h │ │ │ ├── app │ │ │ │ └── offset.h │ │ │ ├── auto.conf │ │ │ ├── blink │ │ │ │ └── gpio.h │ │ │ ├── bootloader │ │ │ │ └── vddsdio │ │ │ │ │ └── boost │ │ │ │ │ └── 1 │ │ │ │ │ └── 9v.h │ │ │ ├── brownout │ │ │ │ ├── det.h │ │ │ │ └── det │ │ │ │ │ ├── lvl.h │ │ │ │ │ └── lvl │ │ │ │ │ └── sel │ │ │ │ │ └── 0.h │ │ │ ├── bt │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── btdm │ │ │ │ └── controller │ │ │ │ │ └── pinned │ │ │ │ │ └── to │ │ │ │ │ └── core.h │ │ │ ├── console │ │ │ │ └── uart │ │ │ │ │ ├── baudrate.h │ │ │ │ │ ├── default.h │ │ │ │ │ └── num.h │ │ │ ├── dma │ │ │ │ ├── rx │ │ │ │ │ └── buf │ │ │ │ │ │ └── num.h │ │ │ │ └── tx │ │ │ │ │ └── buf │ │ │ │ │ └── num.h │ │ │ ├── emac │ │ │ │ └── task │ │ │ │ │ └── priority.h │ │ │ ├── esp │ │ │ │ └── err │ │ │ │ │ └── to │ │ │ │ │ └── name │ │ │ │ │ └── lookup.h │ │ │ ├── esp32 │ │ │ │ ├── apptrace │ │ │ │ │ ├── dest │ │ │ │ │ │ └── none.h │ │ │ │ │ └── lock │ │ │ │ │ │ └── enable.h │ │ │ │ ├── debug │ │ │ │ │ └── ocdaware.h │ │ │ │ ├── deep │ │ │ │ │ └── sleep │ │ │ │ │ │ └── wakeup │ │ │ │ │ │ └── delay.h │ │ │ │ ├── default │ │ │ │ │ └── cpu │ │ │ │ │ │ └── freq │ │ │ │ │ │ ├── 160.h │ │ │ │ │ │ └── mhz.h │ │ │ │ ├── enable │ │ │ │ │ └── coredump │ │ │ │ │ │ └── to │ │ │ │ │ │ └── none.h │ │ │ │ ├── panic │ │ │ │ │ └── print │ │ │ │ │ │ └── reboot.h │ │ │ │ ├── phy │ │ │ │ │ ├── calibration │ │ │ │ │ │ └── and │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── storage.h │ │ │ │ │ └── max │ │ │ │ │ │ ├── tx │ │ │ │ │ │ └── power.h │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── tx │ │ │ │ │ │ └── power.h │ │ │ │ ├── pthread │ │ │ │ │ └── task │ │ │ │ │ │ ├── prio │ │ │ │ │ │ └── default.h │ │ │ │ │ │ └── stack │ │ │ │ │ │ └── size │ │ │ │ │ │ └── default.h │ │ │ │ ├── rtc │ │ │ │ │ ├── clk │ │ │ │ │ │ └── cal │ │ │ │ │ │ │ └── cycles.h │ │ │ │ │ ├── clock │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── rc.h │ │ │ │ │ └── xtal │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ └── cycles.h │ │ │ │ ├── time │ │ │ │ │ └── syscall │ │ │ │ │ │ └── use │ │ │ │ │ │ └── rtc │ │ │ │ │ │ └── frc1.h │ │ │ │ ├── wifi │ │ │ │ │ ├── ampdu │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ │ └── num.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ ├── nvs │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── rx │ │ │ │ │ │ └── ba │ │ │ │ │ │ │ └── win.h │ │ │ │ │ ├── static │ │ │ │ │ │ └── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ └── tx │ │ │ │ │ │ ├── ba │ │ │ │ │ │ └── win.h │ │ │ │ │ │ └── buffer │ │ │ │ │ │ └── type.h │ │ │ │ └── xtal │ │ │ │ │ ├── freq.h │ │ │ │ │ └── freq │ │ │ │ │ └── 40.h │ │ │ ├── esptoolpy │ │ │ │ ├── after.h │ │ │ │ ├── after │ │ │ │ │ └── reset.h │ │ │ │ ├── baud.h │ │ │ │ ├── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ │ └── val.h │ │ │ │ ├── before.h │ │ │ │ ├── before │ │ │ │ │ └── reset.h │ │ │ │ ├── compressed.h │ │ │ │ ├── flashfreq.h │ │ │ │ ├── flashfreq │ │ │ │ │ └── 40m.h │ │ │ │ ├── flashmode.h │ │ │ │ ├── flashsize.h │ │ │ │ ├── flashsize │ │ │ │ │ ├── 4mb.h │ │ │ │ │ └── detect.h │ │ │ │ └── port.h │ │ │ ├── fatfs │ │ │ │ ├── codepage.h │ │ │ │ ├── codepage │ │ │ │ │ └── 437.h │ │ │ │ ├── fs │ │ │ │ │ └── lock.h │ │ │ │ ├── lfn │ │ │ │ │ └── none.h │ │ │ │ ├── per │ │ │ │ │ └── file │ │ │ │ │ │ └── cache.h │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── flashmode │ │ │ │ └── dio.h │ │ │ ├── four │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── freertos │ │ │ │ ├── assert │ │ │ │ │ ├── fail │ │ │ │ │ │ └── abort.h │ │ │ │ │ └── on │ │ │ │ │ │ └── untested │ │ │ │ │ │ └── function.h │ │ │ │ ├── check │ │ │ │ │ └── stackoverflow │ │ │ │ │ │ └── canary.h │ │ │ │ ├── coretimer │ │ │ │ │ └── 0.h │ │ │ │ ├── hz.h │ │ │ │ ├── idle │ │ │ │ │ └── task │ │ │ │ │ │ └── stacksize.h │ │ │ │ ├── interrupt │ │ │ │ │ └── backtrace.h │ │ │ │ ├── isr │ │ │ │ │ └── stacksize.h │ │ │ │ ├── max │ │ │ │ │ └── task │ │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── queue │ │ │ │ │ └── registry │ │ │ │ │ │ └── size.h │ │ │ │ └── thread │ │ │ │ │ └── local │ │ │ │ │ └── storage │ │ │ │ │ └── pointers.h │ │ │ ├── heap │ │ │ │ └── poisoning │ │ │ │ │ └── disabled.h │ │ │ ├── int │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── ip │ │ │ │ └── lost │ │ │ │ │ └── timer │ │ │ │ │ └── interval.h │ │ │ ├── ipc │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── libsodium │ │ │ │ └── use │ │ │ │ │ └── mbedtls │ │ │ │ │ └── sha.h │ │ │ ├── log │ │ │ │ ├── bootloader │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ │ └── info.h │ │ │ │ ├── colors.h │ │ │ │ └── default │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ └── info.h │ │ │ ├── lwip │ │ │ │ ├── dhcp │ │ │ │ │ ├── does │ │ │ │ │ │ └── arp │ │ │ │ │ │ │ └── check.h │ │ │ │ │ └── max │ │ │ │ │ │ └── ntp │ │ │ │ │ │ └── servers.h │ │ │ │ ├── dhcps │ │ │ │ │ ├── lease │ │ │ │ │ │ └── unit.h │ │ │ │ │ └── max │ │ │ │ │ │ └── station │ │ │ │ │ │ └── num.h │ │ │ │ ├── etharp │ │ │ │ │ └── trust │ │ │ │ │ │ └── ip │ │ │ │ │ │ └── mac.h │ │ │ │ ├── loopback │ │ │ │ │ └── max │ │ │ │ │ │ └── pbufs.h │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── listening │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── raw │ │ │ │ │ │ └── pcbs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ └── udp │ │ │ │ │ │ └── pcbs.h │ │ │ │ ├── netif │ │ │ │ │ └── loopback.h │ │ │ │ └── so │ │ │ │ │ ├── reuse.h │ │ │ │ │ └── reuse │ │ │ │ │ └── rxtoall.h │ │ │ ├── main │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── make │ │ │ │ └── warn │ │ │ │ │ └── undefined │ │ │ │ │ └── variables.h │ │ │ ├── mbedtls │ │ │ │ ├── aes │ │ │ │ │ └── c.h │ │ │ │ ├── ccm │ │ │ │ │ └── c.h │ │ │ │ ├── ecdh │ │ │ │ │ └── c.h │ │ │ │ ├── ecdsa │ │ │ │ │ └── c.h │ │ │ │ ├── ecp │ │ │ │ │ ├── c.h │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── bp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp512r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── secp521r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ └── nist │ │ │ │ │ │ └── optim.h │ │ │ │ ├── gcm │ │ │ │ │ └── c.h │ │ │ │ ├── hardware │ │ │ │ │ └── aes.h │ │ │ │ ├── have │ │ │ │ │ └── time.h │ │ │ │ ├── key │ │ │ │ │ └── exchange │ │ │ │ │ │ ├── dhe │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdhe │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── elliptic │ │ │ │ │ │ └── curve.h │ │ │ │ │ │ └── rsa.h │ │ │ │ ├── pem │ │ │ │ │ ├── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── write │ │ │ │ │ │ └── c.h │ │ │ │ ├── rc4 │ │ │ │ │ └── disabled.h │ │ │ │ ├── ssl │ │ │ │ │ ├── alpn.h │ │ │ │ │ ├── max │ │ │ │ │ │ └── content │ │ │ │ │ │ │ └── len.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── tls1.h │ │ │ │ │ │ └── tls1 │ │ │ │ │ │ │ ├── 1.h │ │ │ │ │ │ │ └── 2.h │ │ │ │ │ ├── renegotiation.h │ │ │ │ │ └── session │ │ │ │ │ │ └── tickets.h │ │ │ │ ├── tls │ │ │ │ │ ├── client.h │ │ │ │ │ ├── enabled.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── server │ │ │ │ │ │ └── and │ │ │ │ │ │ └── client.h │ │ │ │ └── x509 │ │ │ │ │ ├── crl │ │ │ │ │ └── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── csr │ │ │ │ │ └── parse │ │ │ │ │ └── c.h │ │ │ ├── monitor │ │ │ │ ├── baud.h │ │ │ │ └── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ └── val.h │ │ │ ├── newlib │ │ │ │ ├── stdin │ │ │ │ │ └── line │ │ │ │ │ │ └── ending │ │ │ │ │ │ └── cr.h │ │ │ │ └── stdout │ │ │ │ │ └── line │ │ │ │ │ └── ending │ │ │ │ │ └── crlf.h │ │ │ ├── number │ │ │ │ └── of │ │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── openssl │ │ │ │ └── assert │ │ │ │ │ └── do │ │ │ │ │ └── nothing.h │ │ │ ├── optimization │ │ │ │ ├── assertions │ │ │ │ │ └── enabled.h │ │ │ │ └── level │ │ │ │ │ └── debug.h │ │ │ ├── partition │ │ │ │ └── table │ │ │ │ │ ├── custom │ │ │ │ │ ├── app │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── offset.h │ │ │ │ │ └── filename.h │ │ │ │ │ ├── filename.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── single │ │ │ │ │ └── app.h │ │ │ ├── python.h │ │ │ ├── spi │ │ │ │ └── flash │ │ │ │ │ ├── rom │ │ │ │ │ └── driver │ │ │ │ │ │ └── patch.h │ │ │ │ │ └── writing │ │ │ │ │ └── dangerous │ │ │ │ │ └── regions │ │ │ │ │ └── aborts.h │ │ │ ├── spiffs │ │ │ │ ├── cache.h │ │ │ │ ├── cache │ │ │ │ │ └── wr.h │ │ │ │ ├── gc │ │ │ │ │ └── max │ │ │ │ │ │ └── runs.h │ │ │ │ ├── max │ │ │ │ │ └── partitions.h │ │ │ │ ├── meta │ │ │ │ │ └── length.h │ │ │ │ ├── obj │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── page │ │ │ │ │ ├── check.h │ │ │ │ │ └── size.h │ │ │ │ └── use │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── magic │ │ │ │ │ └── length.h │ │ │ │ │ └── mtime.h │ │ │ ├── stack │ │ │ │ └── check │ │ │ │ │ └── none.h │ │ │ ├── system │ │ │ │ └── event │ │ │ │ │ ├── queue │ │ │ │ │ └── size.h │ │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── task │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── idle │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── cpu0.h │ │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── s.h │ │ │ ├── tcp │ │ │ │ ├── maxrtx.h │ │ │ │ ├── msl.h │ │ │ │ ├── mss.h │ │ │ │ ├── oversize │ │ │ │ │ └── mss.h │ │ │ │ ├── queue │ │ │ │ │ └── ooseq.h │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ ├── snd │ │ │ │ │ └── buf │ │ │ │ │ │ └── default.h │ │ │ │ ├── synmaxrtx.h │ │ │ │ └── wnd │ │ │ │ │ └── default.h │ │ │ ├── tcpip │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── timer │ │ │ │ ├── queue │ │ │ │ │ └── length.h │ │ │ │ └── task │ │ │ │ │ ├── priority.h │ │ │ │ │ └── stack │ │ │ │ │ ├── depth.h │ │ │ │ │ └── size.h │ │ │ ├── toolprefix.h │ │ │ ├── tracemem │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── tristate.conf │ │ │ ├── udp │ │ │ │ └── recvmbox │ │ │ │ │ └── size.h │ │ │ ├── ulp │ │ │ │ └── coproc │ │ │ │ │ └── reserve │ │ │ │ │ └── mem.h │ │ │ └── wl │ │ │ │ └── sector │ │ │ │ ├── size.h │ │ │ │ └── size │ │ │ │ └── 4096.h │ │ └── sdkconfig.h │ ├── jsmn │ │ └── component_project_vars.mk │ ├── json │ │ └── component_project_vars.mk │ ├── libsodium │ │ └── component_project_vars.mk │ ├── log │ │ └── component_project_vars.mk │ ├── lwip │ │ └── component_project_vars.mk │ ├── main │ │ └── component_project_vars.mk │ ├── mbedtls │ │ └── component_project_vars.mk │ ├── mdns │ │ └── component_project_vars.mk │ ├── micro-ecc │ │ └── component_project_vars.mk │ ├── newlib │ │ └── component_project_vars.mk │ ├── nghttp │ │ └── component_project_vars.mk │ ├── nvs_flash │ │ └── component_project_vars.mk │ ├── openssl │ │ └── component_project_vars.mk │ ├── partition_table │ │ └── component_project_vars.mk │ ├── partitions_singleapp.bin │ ├── pthread │ │ └── component_project_vars.mk │ ├── sdmmc │ │ └── component_project_vars.mk │ ├── smartconfig │ │ └── component_project_vars.mk │ ├── soc │ │ └── component_project_vars.mk │ ├── spi_flash │ │ └── component_project_vars.mk │ ├── spiffs │ │ └── component_project_vars.mk │ ├── tcpip_adapter │ │ └── component_project_vars.mk │ ├── ulp │ │ └── component_project_vars.mk │ ├── vfs │ │ └── component_project_vars.mk │ ├── wear_levelling │ │ └── component_project_vars.mk │ ├── wpa_supplicant │ │ └── component_project_vars.mk │ └── xtensa-debug-module │ │ └── component_project_vars.mk ├── main │ ├── Kconfig.projbuild │ ├── app_main.c │ └── component.mk ├── sdkconfig └── sdkconfig.old ├── 4_take_pic_http_to_pc ├── CMakeLists.txt ├── Makefile ├── README.md └── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── component.mk │ └── main.c ├── 4_timer ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md ├── alreadyBin │ ├── 4_timer.bin │ ├── bootloader.bin │ └── partitions_singleapp.bin ├── build │ ├── 2_blink_led.bin │ ├── app_trace │ │ └── component_project_vars.mk │ ├── app_update │ │ └── component_project_vars.mk │ ├── aws_iot │ │ └── component_project_vars.mk │ ├── bootloader │ │ ├── bootloader.bin │ │ ├── bootloader_support │ │ │ └── component_project_vars.mk │ │ ├── component_project_vars.mk │ │ ├── esptool_py │ │ │ └── component_project_vars.mk │ │ ├── log │ │ │ └── component_project_vars.mk │ │ ├── main │ │ │ └── component_project_vars.mk │ │ ├── micro-ecc │ │ │ └── component_project_vars.mk │ │ ├── soc │ │ │ └── component_project_vars.mk │ │ └── spi_flash │ │ │ └── component_project_vars.mk │ ├── bootloader_support │ │ └── component_project_vars.mk │ ├── bt │ │ └── component_project_vars.mk │ ├── coap │ │ └── component_project_vars.mk │ ├── console │ │ └── component_project_vars.mk │ ├── cxx │ │ └── component_project_vars.mk │ ├── driver │ │ └── component_project_vars.mk │ ├── esp-tls │ │ └── component_project_vars.mk │ ├── esp32 │ │ ├── component_project_vars.mk │ │ └── esp32_out.ld │ ├── esp_adc_cal │ │ └── component_project_vars.mk │ ├── esptool_py │ │ └── component_project_vars.mk │ ├── ethernet │ │ └── component_project_vars.mk │ ├── expat │ │ └── component_project_vars.mk │ ├── fatfs │ │ └── component_project_vars.mk │ ├── freertos │ │ └── component_project_vars.mk │ ├── heap │ │ └── component_project_vars.mk │ ├── idf_test │ │ └── component_project_vars.mk │ ├── include │ │ ├── config │ │ │ ├── adc │ │ │ │ └── cal │ │ │ │ │ ├── efuse │ │ │ │ │ ├── tp │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── vref │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── lut │ │ │ │ │ └── enable.h │ │ │ ├── adc2 │ │ │ │ └── disable │ │ │ │ │ └── dac.h │ │ │ ├── app │ │ │ │ └── offset.h │ │ │ ├── auto.conf │ │ │ ├── blink │ │ │ │ └── gpio.h │ │ │ ├── bootloader │ │ │ │ └── vddsdio │ │ │ │ │ └── boost │ │ │ │ │ └── 1 │ │ │ │ │ └── 9v.h │ │ │ ├── brownout │ │ │ │ ├── det.h │ │ │ │ └── det │ │ │ │ │ ├── lvl.h │ │ │ │ │ └── lvl │ │ │ │ │ └── sel │ │ │ │ │ └── 0.h │ │ │ ├── bt │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── btdm │ │ │ │ └── controller │ │ │ │ │ └── pinned │ │ │ │ │ └── to │ │ │ │ │ └── core.h │ │ │ ├── console │ │ │ │ └── uart │ │ │ │ │ ├── baudrate.h │ │ │ │ │ ├── default.h │ │ │ │ │ └── num.h │ │ │ ├── dma │ │ │ │ ├── rx │ │ │ │ │ └── buf │ │ │ │ │ │ └── num.h │ │ │ │ └── tx │ │ │ │ │ └── buf │ │ │ │ │ └── num.h │ │ │ ├── emac │ │ │ │ └── task │ │ │ │ │ └── priority.h │ │ │ ├── esp │ │ │ │ └── err │ │ │ │ │ └── to │ │ │ │ │ └── name │ │ │ │ │ └── lookup.h │ │ │ ├── esp32 │ │ │ │ ├── apptrace │ │ │ │ │ ├── dest │ │ │ │ │ │ └── none.h │ │ │ │ │ └── lock │ │ │ │ │ │ └── enable.h │ │ │ │ ├── debug │ │ │ │ │ └── ocdaware.h │ │ │ │ ├── deep │ │ │ │ │ └── sleep │ │ │ │ │ │ └── wakeup │ │ │ │ │ │ └── delay.h │ │ │ │ ├── default │ │ │ │ │ └── cpu │ │ │ │ │ │ └── freq │ │ │ │ │ │ ├── 160.h │ │ │ │ │ │ └── mhz.h │ │ │ │ ├── enable │ │ │ │ │ └── coredump │ │ │ │ │ │ └── to │ │ │ │ │ │ └── none.h │ │ │ │ ├── panic │ │ │ │ │ └── print │ │ │ │ │ │ └── reboot.h │ │ │ │ ├── phy │ │ │ │ │ ├── calibration │ │ │ │ │ │ └── and │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── storage.h │ │ │ │ │ └── max │ │ │ │ │ │ ├── tx │ │ │ │ │ │ └── power.h │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── tx │ │ │ │ │ │ └── power.h │ │ │ │ ├── pthread │ │ │ │ │ └── task │ │ │ │ │ │ ├── prio │ │ │ │ │ │ └── default.h │ │ │ │ │ │ └── stack │ │ │ │ │ │ └── size │ │ │ │ │ │ └── default.h │ │ │ │ ├── rtc │ │ │ │ │ ├── clk │ │ │ │ │ │ └── cal │ │ │ │ │ │ │ └── cycles.h │ │ │ │ │ ├── clock │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── rc.h │ │ │ │ │ └── xtal │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ └── cycles.h │ │ │ │ ├── time │ │ │ │ │ └── syscall │ │ │ │ │ │ └── use │ │ │ │ │ │ └── rtc │ │ │ │ │ │ └── frc1.h │ │ │ │ ├── wifi │ │ │ │ │ ├── ampdu │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ │ └── num.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ ├── nvs │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── rx │ │ │ │ │ │ └── ba │ │ │ │ │ │ │ └── win.h │ │ │ │ │ ├── static │ │ │ │ │ │ └── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ └── tx │ │ │ │ │ │ ├── ba │ │ │ │ │ │ └── win.h │ │ │ │ │ │ └── buffer │ │ │ │ │ │ └── type.h │ │ │ │ └── xtal │ │ │ │ │ ├── freq.h │ │ │ │ │ └── freq │ │ │ │ │ └── 40.h │ │ │ ├── esptoolpy │ │ │ │ ├── after.h │ │ │ │ ├── after │ │ │ │ │ └── reset.h │ │ │ │ ├── baud.h │ │ │ │ ├── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ │ └── val.h │ │ │ │ ├── before.h │ │ │ │ ├── before │ │ │ │ │ └── reset.h │ │ │ │ ├── compressed.h │ │ │ │ ├── flashfreq.h │ │ │ │ ├── flashfreq │ │ │ │ │ └── 40m.h │ │ │ │ ├── flashmode.h │ │ │ │ ├── flashsize.h │ │ │ │ ├── flashsize │ │ │ │ │ ├── 4mb.h │ │ │ │ │ └── detect.h │ │ │ │ └── port.h │ │ │ ├── fatfs │ │ │ │ ├── codepage.h │ │ │ │ ├── codepage │ │ │ │ │ └── 437.h │ │ │ │ ├── fs │ │ │ │ │ └── lock.h │ │ │ │ ├── lfn │ │ │ │ │ └── none.h │ │ │ │ ├── per │ │ │ │ │ └── file │ │ │ │ │ │ └── cache.h │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── flashmode │ │ │ │ └── dio.h │ │ │ ├── four │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── freertos │ │ │ │ ├── assert │ │ │ │ │ ├── fail │ │ │ │ │ │ └── abort.h │ │ │ │ │ └── on │ │ │ │ │ │ └── untested │ │ │ │ │ │ └── function.h │ │ │ │ ├── check │ │ │ │ │ └── stackoverflow │ │ │ │ │ │ └── canary.h │ │ │ │ ├── coretimer │ │ │ │ │ └── 0.h │ │ │ │ ├── hz.h │ │ │ │ ├── idle │ │ │ │ │ └── task │ │ │ │ │ │ └── stacksize.h │ │ │ │ ├── interrupt │ │ │ │ │ └── backtrace.h │ │ │ │ ├── isr │ │ │ │ │ └── stacksize.h │ │ │ │ ├── max │ │ │ │ │ └── task │ │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── queue │ │ │ │ │ └── registry │ │ │ │ │ │ └── size.h │ │ │ │ └── thread │ │ │ │ │ └── local │ │ │ │ │ └── storage │ │ │ │ │ └── pointers.h │ │ │ ├── heap │ │ │ │ └── poisoning │ │ │ │ │ └── disabled.h │ │ │ ├── int │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── ip │ │ │ │ └── lost │ │ │ │ │ └── timer │ │ │ │ │ └── interval.h │ │ │ ├── ipc │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── libsodium │ │ │ │ └── use │ │ │ │ │ └── mbedtls │ │ │ │ │ └── sha.h │ │ │ ├── log │ │ │ │ ├── bootloader │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ │ └── info.h │ │ │ │ ├── colors.h │ │ │ │ └── default │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ └── info.h │ │ │ ├── lwip │ │ │ │ ├── dhcp │ │ │ │ │ ├── does │ │ │ │ │ │ └── arp │ │ │ │ │ │ │ └── check.h │ │ │ │ │ └── max │ │ │ │ │ │ └── ntp │ │ │ │ │ │ └── servers.h │ │ │ │ ├── dhcps │ │ │ │ │ ├── lease │ │ │ │ │ │ └── unit.h │ │ │ │ │ └── max │ │ │ │ │ │ └── station │ │ │ │ │ │ └── num.h │ │ │ │ ├── etharp │ │ │ │ │ └── trust │ │ │ │ │ │ └── ip │ │ │ │ │ │ └── mac.h │ │ │ │ ├── loopback │ │ │ │ │ └── max │ │ │ │ │ │ └── pbufs.h │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── listening │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── raw │ │ │ │ │ │ └── pcbs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ └── udp │ │ │ │ │ │ └── pcbs.h │ │ │ │ ├── netif │ │ │ │ │ └── loopback.h │ │ │ │ └── so │ │ │ │ │ ├── reuse.h │ │ │ │ │ └── reuse │ │ │ │ │ └── rxtoall.h │ │ │ ├── main │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── make │ │ │ │ └── warn │ │ │ │ │ └── undefined │ │ │ │ │ └── variables.h │ │ │ ├── mbedtls │ │ │ │ ├── aes │ │ │ │ │ └── c.h │ │ │ │ ├── ccm │ │ │ │ │ └── c.h │ │ │ │ ├── ecdh │ │ │ │ │ └── c.h │ │ │ │ ├── ecdsa │ │ │ │ │ └── c.h │ │ │ │ ├── ecp │ │ │ │ │ ├── c.h │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── bp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp512r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── secp521r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ └── nist │ │ │ │ │ │ └── optim.h │ │ │ │ ├── gcm │ │ │ │ │ └── c.h │ │ │ │ ├── hardware │ │ │ │ │ └── aes.h │ │ │ │ ├── have │ │ │ │ │ └── time.h │ │ │ │ ├── key │ │ │ │ │ └── exchange │ │ │ │ │ │ ├── dhe │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdhe │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── elliptic │ │ │ │ │ │ └── curve.h │ │ │ │ │ │ └── rsa.h │ │ │ │ ├── pem │ │ │ │ │ ├── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── write │ │ │ │ │ │ └── c.h │ │ │ │ ├── rc4 │ │ │ │ │ └── disabled.h │ │ │ │ ├── ssl │ │ │ │ │ ├── alpn.h │ │ │ │ │ ├── max │ │ │ │ │ │ └── content │ │ │ │ │ │ │ └── len.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── tls1.h │ │ │ │ │ │ └── tls1 │ │ │ │ │ │ │ ├── 1.h │ │ │ │ │ │ │ └── 2.h │ │ │ │ │ ├── renegotiation.h │ │ │ │ │ └── session │ │ │ │ │ │ └── tickets.h │ │ │ │ ├── tls │ │ │ │ │ ├── client.h │ │ │ │ │ ├── enabled.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── server │ │ │ │ │ │ └── and │ │ │ │ │ │ └── client.h │ │ │ │ └── x509 │ │ │ │ │ ├── crl │ │ │ │ │ └── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── csr │ │ │ │ │ └── parse │ │ │ │ │ └── c.h │ │ │ ├── monitor │ │ │ │ ├── baud.h │ │ │ │ └── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ └── val.h │ │ │ ├── newlib │ │ │ │ ├── stdin │ │ │ │ │ └── line │ │ │ │ │ │ └── ending │ │ │ │ │ │ └── cr.h │ │ │ │ └── stdout │ │ │ │ │ └── line │ │ │ │ │ └── ending │ │ │ │ │ └── crlf.h │ │ │ ├── number │ │ │ │ └── of │ │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── openssl │ │ │ │ └── assert │ │ │ │ │ └── do │ │ │ │ │ └── nothing.h │ │ │ ├── optimization │ │ │ │ ├── assertions │ │ │ │ │ └── enabled.h │ │ │ │ └── level │ │ │ │ │ └── debug.h │ │ │ ├── partition │ │ │ │ └── table │ │ │ │ │ ├── custom │ │ │ │ │ ├── app │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── offset.h │ │ │ │ │ └── filename.h │ │ │ │ │ ├── filename.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── single │ │ │ │ │ └── app.h │ │ │ ├── python.h │ │ │ ├── spi │ │ │ │ └── flash │ │ │ │ │ ├── rom │ │ │ │ │ └── driver │ │ │ │ │ │ └── patch.h │ │ │ │ │ └── writing │ │ │ │ │ └── dangerous │ │ │ │ │ └── regions │ │ │ │ │ └── aborts.h │ │ │ ├── spiffs │ │ │ │ ├── cache.h │ │ │ │ ├── cache │ │ │ │ │ └── wr.h │ │ │ │ ├── gc │ │ │ │ │ └── max │ │ │ │ │ │ └── runs.h │ │ │ │ ├── max │ │ │ │ │ └── partitions.h │ │ │ │ ├── meta │ │ │ │ │ └── length.h │ │ │ │ ├── obj │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── page │ │ │ │ │ ├── check.h │ │ │ │ │ └── size.h │ │ │ │ └── use │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── magic │ │ │ │ │ └── length.h │ │ │ │ │ └── mtime.h │ │ │ ├── stack │ │ │ │ └── check │ │ │ │ │ └── none.h │ │ │ ├── system │ │ │ │ └── event │ │ │ │ │ ├── queue │ │ │ │ │ └── size.h │ │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── task │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── idle │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── cpu0.h │ │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── s.h │ │ │ ├── tcp │ │ │ │ ├── maxrtx.h │ │ │ │ ├── msl.h │ │ │ │ ├── mss.h │ │ │ │ ├── oversize │ │ │ │ │ └── mss.h │ │ │ │ ├── queue │ │ │ │ │ └── ooseq.h │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ ├── snd │ │ │ │ │ └── buf │ │ │ │ │ │ └── default.h │ │ │ │ ├── synmaxrtx.h │ │ │ │ └── wnd │ │ │ │ │ └── default.h │ │ │ ├── tcpip │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── timer │ │ │ │ ├── queue │ │ │ │ │ └── length.h │ │ │ │ └── task │ │ │ │ │ ├── priority.h │ │ │ │ │ └── stack │ │ │ │ │ ├── depth.h │ │ │ │ │ └── size.h │ │ │ ├── toolprefix.h │ │ │ ├── tracemem │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── tristate.conf │ │ │ ├── udp │ │ │ │ └── recvmbox │ │ │ │ │ └── size.h │ │ │ ├── ulp │ │ │ │ └── coproc │ │ │ │ │ └── reserve │ │ │ │ │ └── mem.h │ │ │ └── wl │ │ │ │ └── sector │ │ │ │ ├── size.h │ │ │ │ └── size │ │ │ │ └── 4096.h │ │ └── sdkconfig.h │ ├── jsmn │ │ └── component_project_vars.mk │ ├── json │ │ └── component_project_vars.mk │ ├── libsodium │ │ └── component_project_vars.mk │ ├── log │ │ └── component_project_vars.mk │ ├── lwip │ │ └── component_project_vars.mk │ ├── main │ │ └── component_project_vars.mk │ ├── mbedtls │ │ └── component_project_vars.mk │ ├── mdns │ │ └── component_project_vars.mk │ ├── micro-ecc │ │ └── component_project_vars.mk │ ├── newlib │ │ └── component_project_vars.mk │ ├── nghttp │ │ └── component_project_vars.mk │ ├── nvs_flash │ │ └── component_project_vars.mk │ ├── openssl │ │ └── component_project_vars.mk │ ├── partition_table │ │ └── component_project_vars.mk │ ├── partitions_singleapp.bin │ ├── pthread │ │ └── component_project_vars.mk │ ├── sdmmc │ │ └── component_project_vars.mk │ ├── smartconfig │ │ └── component_project_vars.mk │ ├── soc │ │ └── component_project_vars.mk │ ├── spi_flash │ │ └── component_project_vars.mk │ ├── spiffs │ │ └── component_project_vars.mk │ ├── tcpip_adapter │ │ └── component_project_vars.mk │ ├── ulp │ │ └── component_project_vars.mk │ ├── vfs │ │ └── component_project_vars.mk │ ├── wear_levelling │ │ └── component_project_vars.mk │ ├── wpa_supplicant │ │ └── component_project_vars.mk │ └── xtensa-debug-module │ │ └── component_project_vars.mk ├── main │ ├── Kconfig.projbuild │ ├── app_main.c │ └── component.mk ├── sdkconfig └── sdkconfig.old ├── 5_ledc_pwm ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md ├── alreadyBin │ ├── 5_led_pwm.bin │ ├── bootloader.bin │ └── partitions_singleapp.bin ├── build │ ├── 2_blink_led.bin │ ├── app_trace │ │ └── component_project_vars.mk │ ├── app_update │ │ └── component_project_vars.mk │ ├── aws_iot │ │ └── component_project_vars.mk │ ├── bootloader │ │ ├── bootloader.bin │ │ ├── bootloader_support │ │ │ └── component_project_vars.mk │ │ ├── component_project_vars.mk │ │ ├── esptool_py │ │ │ └── component_project_vars.mk │ │ ├── log │ │ │ └── component_project_vars.mk │ │ ├── main │ │ │ └── component_project_vars.mk │ │ ├── micro-ecc │ │ │ └── component_project_vars.mk │ │ ├── soc │ │ │ └── component_project_vars.mk │ │ └── spi_flash │ │ │ └── component_project_vars.mk │ ├── bootloader_support │ │ └── component_project_vars.mk │ ├── bt │ │ └── component_project_vars.mk │ ├── coap │ │ └── component_project_vars.mk │ ├── console │ │ └── component_project_vars.mk │ ├── cxx │ │ └── component_project_vars.mk │ ├── driver │ │ └── component_project_vars.mk │ ├── esp-tls │ │ └── component_project_vars.mk │ ├── esp32 │ │ ├── component_project_vars.mk │ │ └── esp32_out.ld │ ├── esp_adc_cal │ │ └── component_project_vars.mk │ ├── esptool_py │ │ └── component_project_vars.mk │ ├── ethernet │ │ └── component_project_vars.mk │ ├── expat │ │ └── component_project_vars.mk │ ├── fatfs │ │ └── component_project_vars.mk │ ├── freertos │ │ └── component_project_vars.mk │ ├── heap │ │ └── component_project_vars.mk │ ├── idf_test │ │ └── component_project_vars.mk │ ├── include │ │ ├── config │ │ │ ├── adc │ │ │ │ └── cal │ │ │ │ │ ├── efuse │ │ │ │ │ ├── tp │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── vref │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── lut │ │ │ │ │ └── enable.h │ │ │ ├── adc2 │ │ │ │ └── disable │ │ │ │ │ └── dac.h │ │ │ ├── app │ │ │ │ └── offset.h │ │ │ ├── auto.conf │ │ │ ├── blink │ │ │ │ └── gpio.h │ │ │ ├── bootloader │ │ │ │ └── vddsdio │ │ │ │ │ └── boost │ │ │ │ │ └── 1 │ │ │ │ │ └── 9v.h │ │ │ ├── brownout │ │ │ │ ├── det.h │ │ │ │ └── det │ │ │ │ │ ├── lvl.h │ │ │ │ │ └── lvl │ │ │ │ │ └── sel │ │ │ │ │ └── 0.h │ │ │ ├── bt │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── btdm │ │ │ │ └── controller │ │ │ │ │ └── pinned │ │ │ │ │ └── to │ │ │ │ │ └── core.h │ │ │ ├── console │ │ │ │ └── uart │ │ │ │ │ ├── baudrate.h │ │ │ │ │ ├── default.h │ │ │ │ │ └── num.h │ │ │ ├── dma │ │ │ │ ├── rx │ │ │ │ │ └── buf │ │ │ │ │ │ └── num.h │ │ │ │ └── tx │ │ │ │ │ └── buf │ │ │ │ │ └── num.h │ │ │ ├── emac │ │ │ │ └── task │ │ │ │ │ └── priority.h │ │ │ ├── esp │ │ │ │ └── err │ │ │ │ │ └── to │ │ │ │ │ └── name │ │ │ │ │ └── lookup.h │ │ │ ├── esp32 │ │ │ │ ├── apptrace │ │ │ │ │ ├── dest │ │ │ │ │ │ └── none.h │ │ │ │ │ └── lock │ │ │ │ │ │ └── enable.h │ │ │ │ ├── debug │ │ │ │ │ └── ocdaware.h │ │ │ │ ├── deep │ │ │ │ │ └── sleep │ │ │ │ │ │ └── wakeup │ │ │ │ │ │ └── delay.h │ │ │ │ ├── default │ │ │ │ │ └── cpu │ │ │ │ │ │ └── freq │ │ │ │ │ │ ├── 160.h │ │ │ │ │ │ └── mhz.h │ │ │ │ ├── enable │ │ │ │ │ └── coredump │ │ │ │ │ │ └── to │ │ │ │ │ │ └── none.h │ │ │ │ ├── panic │ │ │ │ │ └── print │ │ │ │ │ │ └── reboot.h │ │ │ │ ├── phy │ │ │ │ │ ├── calibration │ │ │ │ │ │ └── and │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── storage.h │ │ │ │ │ └── max │ │ │ │ │ │ ├── tx │ │ │ │ │ │ └── power.h │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── tx │ │ │ │ │ │ └── power.h │ │ │ │ ├── pthread │ │ │ │ │ └── task │ │ │ │ │ │ ├── prio │ │ │ │ │ │ └── default.h │ │ │ │ │ │ └── stack │ │ │ │ │ │ └── size │ │ │ │ │ │ └── default.h │ │ │ │ ├── rtc │ │ │ │ │ ├── clk │ │ │ │ │ │ └── cal │ │ │ │ │ │ │ └── cycles.h │ │ │ │ │ ├── clock │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── rc.h │ │ │ │ │ └── xtal │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ └── cycles.h │ │ │ │ ├── time │ │ │ │ │ └── syscall │ │ │ │ │ │ └── use │ │ │ │ │ │ └── rtc │ │ │ │ │ │ └── frc1.h │ │ │ │ ├── wifi │ │ │ │ │ ├── ampdu │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ │ └── num.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ ├── nvs │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── rx │ │ │ │ │ │ └── ba │ │ │ │ │ │ │ └── win.h │ │ │ │ │ ├── static │ │ │ │ │ │ └── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ └── tx │ │ │ │ │ │ ├── ba │ │ │ │ │ │ └── win.h │ │ │ │ │ │ └── buffer │ │ │ │ │ │ └── type.h │ │ │ │ └── xtal │ │ │ │ │ ├── freq.h │ │ │ │ │ └── freq │ │ │ │ │ └── 40.h │ │ │ ├── esptoolpy │ │ │ │ ├── after.h │ │ │ │ ├── after │ │ │ │ │ └── reset.h │ │ │ │ ├── baud.h │ │ │ │ ├── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ │ └── val.h │ │ │ │ ├── before.h │ │ │ │ ├── before │ │ │ │ │ └── reset.h │ │ │ │ ├── compressed.h │ │ │ │ ├── flashfreq.h │ │ │ │ ├── flashfreq │ │ │ │ │ └── 40m.h │ │ │ │ ├── flashmode.h │ │ │ │ ├── flashsize.h │ │ │ │ ├── flashsize │ │ │ │ │ ├── 4mb.h │ │ │ │ │ └── detect.h │ │ │ │ └── port.h │ │ │ ├── fatfs │ │ │ │ ├── codepage.h │ │ │ │ ├── codepage │ │ │ │ │ └── 437.h │ │ │ │ ├── fs │ │ │ │ │ └── lock.h │ │ │ │ ├── lfn │ │ │ │ │ └── none.h │ │ │ │ ├── per │ │ │ │ │ └── file │ │ │ │ │ │ └── cache.h │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── flashmode │ │ │ │ └── dio.h │ │ │ ├── four │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── freertos │ │ │ │ ├── assert │ │ │ │ │ ├── fail │ │ │ │ │ │ └── abort.h │ │ │ │ │ └── on │ │ │ │ │ │ └── untested │ │ │ │ │ │ └── function.h │ │ │ │ ├── check │ │ │ │ │ └── stackoverflow │ │ │ │ │ │ └── canary.h │ │ │ │ ├── coretimer │ │ │ │ │ └── 0.h │ │ │ │ ├── hz.h │ │ │ │ ├── idle │ │ │ │ │ └── task │ │ │ │ │ │ └── stacksize.h │ │ │ │ ├── interrupt │ │ │ │ │ └── backtrace.h │ │ │ │ ├── isr │ │ │ │ │ └── stacksize.h │ │ │ │ ├── max │ │ │ │ │ └── task │ │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── queue │ │ │ │ │ └── registry │ │ │ │ │ │ └── size.h │ │ │ │ └── thread │ │ │ │ │ └── local │ │ │ │ │ └── storage │ │ │ │ │ └── pointers.h │ │ │ ├── heap │ │ │ │ └── poisoning │ │ │ │ │ └── disabled.h │ │ │ ├── int │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── ip │ │ │ │ └── lost │ │ │ │ │ └── timer │ │ │ │ │ └── interval.h │ │ │ ├── ipc │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── libsodium │ │ │ │ └── use │ │ │ │ │ └── mbedtls │ │ │ │ │ └── sha.h │ │ │ ├── log │ │ │ │ ├── bootloader │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ │ └── info.h │ │ │ │ ├── colors.h │ │ │ │ └── default │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ └── info.h │ │ │ ├── lwip │ │ │ │ ├── dhcp │ │ │ │ │ ├── does │ │ │ │ │ │ └── arp │ │ │ │ │ │ │ └── check.h │ │ │ │ │ └── max │ │ │ │ │ │ └── ntp │ │ │ │ │ │ └── servers.h │ │ │ │ ├── dhcps │ │ │ │ │ ├── lease │ │ │ │ │ │ └── unit.h │ │ │ │ │ └── max │ │ │ │ │ │ └── station │ │ │ │ │ │ └── num.h │ │ │ │ ├── etharp │ │ │ │ │ └── trust │ │ │ │ │ │ └── ip │ │ │ │ │ │ └── mac.h │ │ │ │ ├── loopback │ │ │ │ │ └── max │ │ │ │ │ │ └── pbufs.h │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── listening │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── raw │ │ │ │ │ │ └── pcbs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ └── udp │ │ │ │ │ │ └── pcbs.h │ │ │ │ ├── netif │ │ │ │ │ └── loopback.h │ │ │ │ └── so │ │ │ │ │ ├── reuse.h │ │ │ │ │ └── reuse │ │ │ │ │ └── rxtoall.h │ │ │ ├── main │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── make │ │ │ │ └── warn │ │ │ │ │ └── undefined │ │ │ │ │ └── variables.h │ │ │ ├── mbedtls │ │ │ │ ├── aes │ │ │ │ │ └── c.h │ │ │ │ ├── ccm │ │ │ │ │ └── c.h │ │ │ │ ├── ecdh │ │ │ │ │ └── c.h │ │ │ │ ├── ecdsa │ │ │ │ │ └── c.h │ │ │ │ ├── ecp │ │ │ │ │ ├── c.h │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── bp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp512r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── secp521r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ └── nist │ │ │ │ │ │ └── optim.h │ │ │ │ ├── gcm │ │ │ │ │ └── c.h │ │ │ │ ├── hardware │ │ │ │ │ └── aes.h │ │ │ │ ├── have │ │ │ │ │ └── time.h │ │ │ │ ├── key │ │ │ │ │ └── exchange │ │ │ │ │ │ ├── dhe │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdhe │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── elliptic │ │ │ │ │ │ └── curve.h │ │ │ │ │ │ └── rsa.h │ │ │ │ ├── pem │ │ │ │ │ ├── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── write │ │ │ │ │ │ └── c.h │ │ │ │ ├── rc4 │ │ │ │ │ └── disabled.h │ │ │ │ ├── ssl │ │ │ │ │ ├── alpn.h │ │ │ │ │ ├── max │ │ │ │ │ │ └── content │ │ │ │ │ │ │ └── len.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── tls1.h │ │ │ │ │ │ └── tls1 │ │ │ │ │ │ │ ├── 1.h │ │ │ │ │ │ │ └── 2.h │ │ │ │ │ ├── renegotiation.h │ │ │ │ │ └── session │ │ │ │ │ │ └── tickets.h │ │ │ │ ├── tls │ │ │ │ │ ├── client.h │ │ │ │ │ ├── enabled.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── server │ │ │ │ │ │ └── and │ │ │ │ │ │ └── client.h │ │ │ │ └── x509 │ │ │ │ │ ├── crl │ │ │ │ │ └── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── csr │ │ │ │ │ └── parse │ │ │ │ │ └── c.h │ │ │ ├── monitor │ │ │ │ ├── baud.h │ │ │ │ └── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ └── val.h │ │ │ ├── newlib │ │ │ │ ├── stdin │ │ │ │ │ └── line │ │ │ │ │ │ └── ending │ │ │ │ │ │ └── cr.h │ │ │ │ └── stdout │ │ │ │ │ └── line │ │ │ │ │ └── ending │ │ │ │ │ └── crlf.h │ │ │ ├── number │ │ │ │ └── of │ │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── openssl │ │ │ │ └── assert │ │ │ │ │ └── do │ │ │ │ │ └── nothing.h │ │ │ ├── optimization │ │ │ │ ├── assertions │ │ │ │ │ └── enabled.h │ │ │ │ └── level │ │ │ │ │ └── debug.h │ │ │ ├── partition │ │ │ │ └── table │ │ │ │ │ ├── custom │ │ │ │ │ ├── app │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── offset.h │ │ │ │ │ └── filename.h │ │ │ │ │ ├── filename.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── single │ │ │ │ │ └── app.h │ │ │ ├── python.h │ │ │ ├── spi │ │ │ │ └── flash │ │ │ │ │ ├── rom │ │ │ │ │ └── driver │ │ │ │ │ │ └── patch.h │ │ │ │ │ └── writing │ │ │ │ │ └── dangerous │ │ │ │ │ └── regions │ │ │ │ │ └── aborts.h │ │ │ ├── spiffs │ │ │ │ ├── cache.h │ │ │ │ ├── cache │ │ │ │ │ └── wr.h │ │ │ │ ├── gc │ │ │ │ │ └── max │ │ │ │ │ │ └── runs.h │ │ │ │ ├── max │ │ │ │ │ └── partitions.h │ │ │ │ ├── meta │ │ │ │ │ └── length.h │ │ │ │ ├── obj │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── page │ │ │ │ │ ├── check.h │ │ │ │ │ └── size.h │ │ │ │ └── use │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── magic │ │ │ │ │ └── length.h │ │ │ │ │ └── mtime.h │ │ │ ├── stack │ │ │ │ └── check │ │ │ │ │ └── none.h │ │ │ ├── system │ │ │ │ └── event │ │ │ │ │ ├── queue │ │ │ │ │ └── size.h │ │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── task │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── idle │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── cpu0.h │ │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── s.h │ │ │ ├── tcp │ │ │ │ ├── maxrtx.h │ │ │ │ ├── msl.h │ │ │ │ ├── mss.h │ │ │ │ ├── oversize │ │ │ │ │ └── mss.h │ │ │ │ ├── queue │ │ │ │ │ └── ooseq.h │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ ├── snd │ │ │ │ │ └── buf │ │ │ │ │ │ └── default.h │ │ │ │ ├── synmaxrtx.h │ │ │ │ └── wnd │ │ │ │ │ └── default.h │ │ │ ├── tcpip │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── timer │ │ │ │ ├── queue │ │ │ │ │ └── length.h │ │ │ │ └── task │ │ │ │ │ ├── priority.h │ │ │ │ │ └── stack │ │ │ │ │ ├── depth.h │ │ │ │ │ └── size.h │ │ │ ├── toolprefix.h │ │ │ ├── tracemem │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── tristate.conf │ │ │ ├── udp │ │ │ │ └── recvmbox │ │ │ │ │ └── size.h │ │ │ ├── ulp │ │ │ │ └── coproc │ │ │ │ │ └── reserve │ │ │ │ │ └── mem.h │ │ │ └── wl │ │ │ │ └── sector │ │ │ │ ├── size.h │ │ │ │ └── size │ │ │ │ └── 4096.h │ │ └── sdkconfig.h │ ├── jsmn │ │ └── component_project_vars.mk │ ├── json │ │ └── component_project_vars.mk │ ├── libsodium │ │ └── component_project_vars.mk │ ├── log │ │ └── component_project_vars.mk │ ├── lwip │ │ └── component_project_vars.mk │ ├── main │ │ └── component_project_vars.mk │ ├── mbedtls │ │ └── component_project_vars.mk │ ├── mdns │ │ └── component_project_vars.mk │ ├── micro-ecc │ │ └── component_project_vars.mk │ ├── newlib │ │ └── component_project_vars.mk │ ├── nghttp │ │ └── component_project_vars.mk │ ├── nvs_flash │ │ └── component_project_vars.mk │ ├── openssl │ │ └── component_project_vars.mk │ ├── partition_table │ │ └── component_project_vars.mk │ ├── partitions_singleapp.bin │ ├── pthread │ │ └── component_project_vars.mk │ ├── sdmmc │ │ └── component_project_vars.mk │ ├── smartconfig │ │ └── component_project_vars.mk │ ├── soc │ │ └── component_project_vars.mk │ ├── spi_flash │ │ └── component_project_vars.mk │ ├── spiffs │ │ └── component_project_vars.mk │ ├── tcpip_adapter │ │ └── component_project_vars.mk │ ├── ulp │ │ └── component_project_vars.mk │ ├── vfs │ │ └── component_project_vars.mk │ ├── wear_levelling │ │ └── component_project_vars.mk │ ├── wpa_supplicant │ │ └── component_project_vars.mk │ └── xtensa-debug-module │ │ └── component_project_vars.mk ├── main │ ├── Kconfig.projbuild │ ├── app_main.c │ └── component.mk ├── net.png ├── sdkconfig └── sdkconfig.old ├── 6_smartConfig_AirKiss ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md ├── build │ ├── app_trace │ │ └── component_project_vars.mk │ ├── app_update │ │ └── component_project_vars.mk │ ├── aws_iot │ │ └── component_project_vars.mk │ ├── bootloader │ │ ├── bootloader.bin │ │ ├── bootloader_support │ │ │ └── component_project_vars.mk │ │ ├── component_project_vars.mk │ │ ├── esptool_py │ │ │ └── component_project_vars.mk │ │ ├── log │ │ │ └── component_project_vars.mk │ │ ├── main │ │ │ └── component_project_vars.mk │ │ ├── micro-ecc │ │ │ └── component_project_vars.mk │ │ ├── soc │ │ │ └── component_project_vars.mk │ │ └── spi_flash │ │ │ └── component_project_vars.mk │ ├── bootloader_support │ │ └── component_project_vars.mk │ ├── bt │ │ └── component_project_vars.mk │ ├── coap │ │ └── component_project_vars.mk │ ├── console │ │ └── component_project_vars.mk │ ├── cxx │ │ └── component_project_vars.mk │ ├── driver │ │ └── component_project_vars.mk │ ├── esp32 │ │ ├── component_project_vars.mk │ │ └── esp32_out.ld │ ├── esp_adc_cal │ │ └── component_project_vars.mk │ ├── esptool_py │ │ └── component_project_vars.mk │ ├── ethernet │ │ └── component_project_vars.mk │ ├── expat │ │ └── component_project_vars.mk │ ├── fatfs │ │ └── component_project_vars.mk │ ├── freertos │ │ └── component_project_vars.mk │ ├── heap │ │ └── component_project_vars.mk │ ├── idf_test │ │ └── component_project_vars.mk │ ├── include │ │ ├── config │ │ │ ├── adc │ │ │ │ └── cal │ │ │ │ │ ├── efuse │ │ │ │ │ ├── tp │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── vref │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── lut │ │ │ │ │ └── enable.h │ │ │ ├── app │ │ │ │ └── offset.h │ │ │ ├── auto.conf │ │ │ ├── bootloader │ │ │ │ └── vddsdio │ │ │ │ │ └── boost │ │ │ │ │ └── 1 │ │ │ │ │ └── 9v.h │ │ │ ├── brownout │ │ │ │ ├── det.h │ │ │ │ └── det │ │ │ │ │ ├── lvl.h │ │ │ │ │ └── lvl │ │ │ │ │ └── sel │ │ │ │ │ └── 0.h │ │ │ ├── bt │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── btdm │ │ │ │ └── controller │ │ │ │ │ └── pinned │ │ │ │ │ └── to │ │ │ │ │ └── core.h │ │ │ ├── console │ │ │ │ └── uart │ │ │ │ │ ├── baudrate.h │ │ │ │ │ ├── default.h │ │ │ │ │ └── num.h │ │ │ ├── dma │ │ │ │ ├── rx │ │ │ │ │ └── buf │ │ │ │ │ │ └── num.h │ │ │ │ └── tx │ │ │ │ │ └── buf │ │ │ │ │ └── num.h │ │ │ ├── emac │ │ │ │ └── task │ │ │ │ │ └── priority.h │ │ │ ├── esp32 │ │ │ │ ├── apptrace │ │ │ │ │ ├── dest │ │ │ │ │ │ └── none.h │ │ │ │ │ └── lock │ │ │ │ │ │ └── enable.h │ │ │ │ ├── debug │ │ │ │ │ └── ocdaware.h │ │ │ │ ├── deep │ │ │ │ │ └── sleep │ │ │ │ │ │ └── wakeup │ │ │ │ │ │ └── delay.h │ │ │ │ ├── default │ │ │ │ │ └── cpu │ │ │ │ │ │ └── freq │ │ │ │ │ │ ├── 160.h │ │ │ │ │ │ └── mhz.h │ │ │ │ ├── enable │ │ │ │ │ └── coredump │ │ │ │ │ │ └── to │ │ │ │ │ │ └── none.h │ │ │ │ ├── panic │ │ │ │ │ └── print │ │ │ │ │ │ └── reboot.h │ │ │ │ ├── phy │ │ │ │ │ ├── calibration │ │ │ │ │ │ └── and │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── storage.h │ │ │ │ │ └── max │ │ │ │ │ │ ├── tx │ │ │ │ │ │ └── power.h │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── tx │ │ │ │ │ │ └── power.h │ │ │ │ ├── pthread │ │ │ │ │ └── task │ │ │ │ │ │ ├── prio │ │ │ │ │ │ └── default.h │ │ │ │ │ │ └── stack │ │ │ │ │ │ └── size │ │ │ │ │ │ └── default.h │ │ │ │ ├── rtc │ │ │ │ │ ├── clk │ │ │ │ │ │ └── cal │ │ │ │ │ │ │ └── cycles.h │ │ │ │ │ └── clock │ │ │ │ │ │ └── source │ │ │ │ │ │ └── internal │ │ │ │ │ │ └── rc.h │ │ │ │ ├── time │ │ │ │ │ └── syscall │ │ │ │ │ │ └── use │ │ │ │ │ │ └── rtc │ │ │ │ │ │ └── frc1.h │ │ │ │ ├── wifi │ │ │ │ │ ├── ampdu │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ │ └── num.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ ├── nvs │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── rx │ │ │ │ │ │ └── ba │ │ │ │ │ │ │ └── win.h │ │ │ │ │ ├── static │ │ │ │ │ │ └── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ └── tx │ │ │ │ │ │ ├── ba │ │ │ │ │ │ └── win.h │ │ │ │ │ │ └── buffer │ │ │ │ │ │ └── type.h │ │ │ │ └── xtal │ │ │ │ │ ├── freq.h │ │ │ │ │ └── freq │ │ │ │ │ └── 40.h │ │ │ ├── esptoolpy │ │ │ │ ├── after.h │ │ │ │ ├── after │ │ │ │ │ └── reset.h │ │ │ │ ├── baud.h │ │ │ │ ├── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ │ └── val.h │ │ │ │ ├── before.h │ │ │ │ ├── before │ │ │ │ │ └── reset.h │ │ │ │ ├── compressed.h │ │ │ │ ├── flashfreq.h │ │ │ │ ├── flashfreq │ │ │ │ │ └── 40m.h │ │ │ │ ├── flashmode.h │ │ │ │ ├── flashsize.h │ │ │ │ ├── flashsize │ │ │ │ │ ├── 4mb.h │ │ │ │ │ └── detect.h │ │ │ │ └── port.h │ │ │ ├── fatfs │ │ │ │ ├── codepage.h │ │ │ │ ├── codepage │ │ │ │ │ └── 437.h │ │ │ │ ├── fs │ │ │ │ │ └── lock.h │ │ │ │ ├── lfn │ │ │ │ │ └── none.h │ │ │ │ ├── per │ │ │ │ │ └── file │ │ │ │ │ │ └── cache.h │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── flashmode │ │ │ │ └── dio.h │ │ │ ├── four │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── freertos │ │ │ │ ├── assert │ │ │ │ │ ├── fail │ │ │ │ │ │ └── abort.h │ │ │ │ │ └── on │ │ │ │ │ │ └── untested │ │ │ │ │ │ └── function.h │ │ │ │ ├── check │ │ │ │ │ └── stackoverflow │ │ │ │ │ │ └── canary.h │ │ │ │ ├── coretimer │ │ │ │ │ └── 0.h │ │ │ │ ├── hz.h │ │ │ │ ├── idle │ │ │ │ │ └── task │ │ │ │ │ │ └── stacksize.h │ │ │ │ ├── interrupt │ │ │ │ │ └── backtrace.h │ │ │ │ ├── isr │ │ │ │ │ └── stacksize.h │ │ │ │ ├── max │ │ │ │ │ └── task │ │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── queue │ │ │ │ │ └── registry │ │ │ │ │ │ └── size.h │ │ │ │ └── thread │ │ │ │ │ └── local │ │ │ │ │ └── storage │ │ │ │ │ └── pointers.h │ │ │ ├── heap │ │ │ │ └── poisoning │ │ │ │ │ └── disabled.h │ │ │ ├── int │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── ip │ │ │ │ └── lost │ │ │ │ │ └── timer │ │ │ │ │ └── interval.h │ │ │ ├── ipc │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── libsodium │ │ │ │ └── use │ │ │ │ │ └── mbedtls │ │ │ │ │ └── sha.h │ │ │ ├── log │ │ │ │ ├── bootloader │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ │ └── info.h │ │ │ │ ├── colors.h │ │ │ │ └── default │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ └── info.h │ │ │ ├── lwip │ │ │ │ ├── dhcp │ │ │ │ │ ├── does │ │ │ │ │ │ └── arp │ │ │ │ │ │ │ └── check.h │ │ │ │ │ └── max │ │ │ │ │ │ └── ntp │ │ │ │ │ │ └── servers.h │ │ │ │ ├── dhcps │ │ │ │ │ ├── lease │ │ │ │ │ │ └── unit.h │ │ │ │ │ └── max │ │ │ │ │ │ └── station │ │ │ │ │ │ └── num.h │ │ │ │ ├── etharp │ │ │ │ │ └── trust │ │ │ │ │ │ └── ip │ │ │ │ │ │ └── mac.h │ │ │ │ ├── loopback │ │ │ │ │ └── max │ │ │ │ │ │ └── pbufs.h │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── listening │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── raw │ │ │ │ │ │ └── pcbs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ └── udp │ │ │ │ │ │ └── pcbs.h │ │ │ │ ├── netif │ │ │ │ │ └── loopback.h │ │ │ │ └── so │ │ │ │ │ ├── reuse.h │ │ │ │ │ └── reuse │ │ │ │ │ └── rxtoall.h │ │ │ ├── main │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── make │ │ │ │ └── warn │ │ │ │ │ └── undefined │ │ │ │ │ └── variables.h │ │ │ ├── mbedtls │ │ │ │ ├── aes │ │ │ │ │ └── c.h │ │ │ │ ├── ccm │ │ │ │ │ └── c.h │ │ │ │ ├── ecdh │ │ │ │ │ └── c.h │ │ │ │ ├── ecdsa │ │ │ │ │ └── c.h │ │ │ │ ├── ecp │ │ │ │ │ ├── c.h │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── bp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp512r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── secp521r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ └── nist │ │ │ │ │ │ └── optim.h │ │ │ │ ├── gcm │ │ │ │ │ └── c.h │ │ │ │ ├── hardware │ │ │ │ │ └── aes.h │ │ │ │ ├── have │ │ │ │ │ └── time.h │ │ │ │ ├── key │ │ │ │ │ └── exchange │ │ │ │ │ │ ├── dhe │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdhe │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── elliptic │ │ │ │ │ │ └── curve.h │ │ │ │ │ │ └── rsa.h │ │ │ │ ├── pem │ │ │ │ │ ├── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── write │ │ │ │ │ │ └── c.h │ │ │ │ ├── rc4 │ │ │ │ │ └── disabled.h │ │ │ │ ├── ssl │ │ │ │ │ ├── alpn.h │ │ │ │ │ ├── max │ │ │ │ │ │ └── content │ │ │ │ │ │ │ └── len.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── tls1.h │ │ │ │ │ │ └── tls1 │ │ │ │ │ │ │ ├── 1.h │ │ │ │ │ │ │ └── 2.h │ │ │ │ │ ├── renegotiation.h │ │ │ │ │ └── session │ │ │ │ │ │ └── tickets.h │ │ │ │ ├── tls │ │ │ │ │ ├── client.h │ │ │ │ │ ├── enabled.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── server │ │ │ │ │ │ └── and │ │ │ │ │ │ └── client.h │ │ │ │ └── x509 │ │ │ │ │ ├── crl │ │ │ │ │ └── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── csr │ │ │ │ │ └── parse │ │ │ │ │ └── c.h │ │ │ ├── memmap │ │ │ │ └── smp.h │ │ │ ├── monitor │ │ │ │ ├── baud.h │ │ │ │ └── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ └── val.h │ │ │ ├── newlib │ │ │ │ ├── stdin │ │ │ │ │ └── line │ │ │ │ │ │ └── ending │ │ │ │ │ │ └── cr.h │ │ │ │ └── stdout │ │ │ │ │ └── line │ │ │ │ │ └── ending │ │ │ │ │ └── crlf.h │ │ │ ├── number │ │ │ │ └── of │ │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── openssl │ │ │ │ └── assert │ │ │ │ │ └── do │ │ │ │ │ └── nothing.h │ │ │ ├── optimization │ │ │ │ ├── assertions │ │ │ │ │ └── enabled.h │ │ │ │ └── level │ │ │ │ │ └── debug.h │ │ │ ├── partition │ │ │ │ └── table │ │ │ │ │ ├── custom │ │ │ │ │ ├── app │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── offset.h │ │ │ │ │ └── filename.h │ │ │ │ │ ├── filename.h │ │ │ │ │ └── single │ │ │ │ │ └── app.h │ │ │ ├── python.h │ │ │ ├── spi │ │ │ │ └── flash │ │ │ │ │ ├── rom │ │ │ │ │ └── driver │ │ │ │ │ │ └── patch.h │ │ │ │ │ └── writing │ │ │ │ │ └── dangerous │ │ │ │ │ └── regions │ │ │ │ │ └── aborts.h │ │ │ ├── spiffs │ │ │ │ ├── cache.h │ │ │ │ ├── cache │ │ │ │ │ └── wr.h │ │ │ │ ├── gc │ │ │ │ │ └── max │ │ │ │ │ │ └── runs.h │ │ │ │ ├── max │ │ │ │ │ └── partitions.h │ │ │ │ ├── meta │ │ │ │ │ └── length.h │ │ │ │ ├── obj │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── page │ │ │ │ │ └── check.h │ │ │ │ └── use │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── magic │ │ │ │ │ └── length.h │ │ │ │ │ └── mtime.h │ │ │ ├── stack │ │ │ │ └── check │ │ │ │ │ └── none.h │ │ │ ├── system │ │ │ │ └── event │ │ │ │ │ ├── queue │ │ │ │ │ └── size.h │ │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── task │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── idle │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── cpu0.h │ │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── s.h │ │ │ ├── tcp │ │ │ │ ├── maxrtx.h │ │ │ │ ├── msl.h │ │ │ │ ├── mss.h │ │ │ │ ├── oversize │ │ │ │ │ └── mss.h │ │ │ │ ├── queue │ │ │ │ │ └── ooseq.h │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ ├── snd │ │ │ │ │ └── buf │ │ │ │ │ │ └── default.h │ │ │ │ ├── synmaxrtx.h │ │ │ │ └── wnd │ │ │ │ │ └── default.h │ │ │ ├── tcpip │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── timer │ │ │ │ ├── queue │ │ │ │ │ └── length.h │ │ │ │ └── task │ │ │ │ │ ├── priority.h │ │ │ │ │ └── stack │ │ │ │ │ ├── depth.h │ │ │ │ │ └── size.h │ │ │ ├── toolprefix.h │ │ │ ├── tracemem │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── tristate.conf │ │ │ ├── udp │ │ │ │ └── recvmbox │ │ │ │ │ └── size.h │ │ │ ├── ulp │ │ │ │ └── coproc │ │ │ │ │ └── reserve │ │ │ │ │ └── mem.h │ │ │ └── wl │ │ │ │ └── sector │ │ │ │ ├── size.h │ │ │ │ └── size │ │ │ │ └── 4096.h │ │ └── sdkconfig.h │ ├── jsmn │ │ └── component_project_vars.mk │ ├── json │ │ └── component_project_vars.mk │ ├── libsodium │ │ └── component_project_vars.mk │ ├── log │ │ └── component_project_vars.mk │ ├── lwip │ │ └── component_project_vars.mk │ ├── main │ │ └── component_project_vars.mk │ ├── mbedtls │ │ └── component_project_vars.mk │ ├── mdns │ │ └── component_project_vars.mk │ ├── micro-ecc │ │ └── component_project_vars.mk │ ├── newlib │ │ └── component_project_vars.mk │ ├── nghttp │ │ └── component_project_vars.mk │ ├── nvs_flash │ │ └── component_project_vars.mk │ ├── openssl │ │ └── component_project_vars.mk │ ├── partition_table │ │ └── component_project_vars.mk │ ├── partitions_singleapp.bin │ ├── pthread │ │ └── component_project_vars.mk │ ├── sdmmc │ │ └── component_project_vars.mk │ ├── smart_config.bin │ ├── soc │ │ └── component_project_vars.mk │ ├── spi_flash │ │ └── component_project_vars.mk │ ├── spiffs │ │ └── component_project_vars.mk │ ├── tcpip_adapter │ │ └── component_project_vars.mk │ ├── ulp │ │ └── component_project_vars.mk │ ├── vfs │ │ └── component_project_vars.mk │ ├── wear_levelling │ │ └── component_project_vars.mk │ ├── wpa_supplicant │ │ └── component_project_vars.mk │ └── xtensa-debug-module │ │ └── component_project_vars.mk ├── main │ ├── component.mk │ └── smartconfig_main.c ├── sdkconfig └── sdkconfig.old ├── 7_Key_Short_Long ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md ├── build │ ├── app_trace │ │ └── component_project_vars.mk │ ├── app_update │ │ └── component_project_vars.mk │ ├── aws_iot │ │ └── component_project_vars.mk │ ├── bootloader │ │ ├── bootloader.bin │ │ ├── bootloader_support │ │ │ └── component_project_vars.mk │ │ ├── component_project_vars.mk │ │ ├── esptool_py │ │ │ └── component_project_vars.mk │ │ ├── log │ │ │ └── component_project_vars.mk │ │ ├── main │ │ │ └── component_project_vars.mk │ │ ├── micro-ecc │ │ │ └── component_project_vars.mk │ │ ├── soc │ │ │ └── component_project_vars.mk │ │ └── spi_flash │ │ │ └── component_project_vars.mk │ ├── bootloader_support │ │ └── component_project_vars.mk │ ├── bt │ │ └── component_project_vars.mk │ ├── coap │ │ └── component_project_vars.mk │ ├── console │ │ └── component_project_vars.mk │ ├── cxx │ │ └── component_project_vars.mk │ ├── driver │ │ └── component_project_vars.mk │ ├── esp32 │ │ ├── component_project_vars.mk │ │ └── esp32_out.ld │ ├── esp_adc_cal │ │ └── component_project_vars.mk │ ├── esptool_py │ │ └── component_project_vars.mk │ ├── ethernet │ │ └── component_project_vars.mk │ ├── expat │ │ └── component_project_vars.mk │ ├── fatfs │ │ └── component_project_vars.mk │ ├── freertos │ │ └── component_project_vars.mk │ ├── heap │ │ └── component_project_vars.mk │ ├── idf_test │ │ └── component_project_vars.mk │ ├── include │ │ ├── config │ │ │ ├── adc │ │ │ │ └── cal │ │ │ │ │ ├── efuse │ │ │ │ │ ├── tp │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── vref │ │ │ │ │ │ └── enable.h │ │ │ │ │ └── lut │ │ │ │ │ └── enable.h │ │ │ ├── app │ │ │ │ └── offset.h │ │ │ ├── auto.conf │ │ │ ├── bootloader │ │ │ │ └── vddsdio │ │ │ │ │ └── boost │ │ │ │ │ └── 1 │ │ │ │ │ └── 9v.h │ │ │ ├── brownout │ │ │ │ ├── det.h │ │ │ │ └── det │ │ │ │ │ ├── lvl.h │ │ │ │ │ └── lvl │ │ │ │ │ └── sel │ │ │ │ │ └── 0.h │ │ │ ├── bt │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── btdm │ │ │ │ └── controller │ │ │ │ │ └── pinned │ │ │ │ │ └── to │ │ │ │ │ └── core.h │ │ │ ├── console │ │ │ │ └── uart │ │ │ │ │ ├── baudrate.h │ │ │ │ │ ├── default.h │ │ │ │ │ └── num.h │ │ │ ├── dma │ │ │ │ ├── rx │ │ │ │ │ └── buf │ │ │ │ │ │ └── num.h │ │ │ │ └── tx │ │ │ │ │ └── buf │ │ │ │ │ └── num.h │ │ │ ├── emac │ │ │ │ └── task │ │ │ │ │ └── priority.h │ │ │ ├── esp32 │ │ │ │ ├── apptrace │ │ │ │ │ ├── dest │ │ │ │ │ │ └── none.h │ │ │ │ │ └── lock │ │ │ │ │ │ └── enable.h │ │ │ │ ├── debug │ │ │ │ │ └── ocdaware.h │ │ │ │ ├── deep │ │ │ │ │ └── sleep │ │ │ │ │ │ └── wakeup │ │ │ │ │ │ └── delay.h │ │ │ │ ├── default │ │ │ │ │ └── cpu │ │ │ │ │ │ └── freq │ │ │ │ │ │ ├── 160.h │ │ │ │ │ │ └── mhz.h │ │ │ │ ├── enable │ │ │ │ │ └── coredump │ │ │ │ │ │ └── to │ │ │ │ │ │ └── none.h │ │ │ │ ├── panic │ │ │ │ │ └── print │ │ │ │ │ │ └── reboot.h │ │ │ │ ├── phy │ │ │ │ │ ├── calibration │ │ │ │ │ │ └── and │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── storage.h │ │ │ │ │ └── max │ │ │ │ │ │ ├── tx │ │ │ │ │ │ └── power.h │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── tx │ │ │ │ │ │ └── power.h │ │ │ │ ├── pthread │ │ │ │ │ └── task │ │ │ │ │ │ ├── prio │ │ │ │ │ │ └── default.h │ │ │ │ │ │ └── stack │ │ │ │ │ │ └── size │ │ │ │ │ │ └── default.h │ │ │ │ ├── rtc │ │ │ │ │ ├── clk │ │ │ │ │ │ └── cal │ │ │ │ │ │ │ └── cycles.h │ │ │ │ │ └── clock │ │ │ │ │ │ └── source │ │ │ │ │ │ └── internal │ │ │ │ │ │ └── rc.h │ │ │ │ ├── time │ │ │ │ │ └── syscall │ │ │ │ │ │ └── use │ │ │ │ │ │ └── rtc │ │ │ │ │ │ └── frc1.h │ │ │ │ ├── wifi │ │ │ │ │ ├── ampdu │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ │ └── num.h │ │ │ │ │ │ └── tx │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ ├── nvs │ │ │ │ │ │ └── enabled.h │ │ │ │ │ ├── rx │ │ │ │ │ │ └── ba │ │ │ │ │ │ │ └── win.h │ │ │ │ │ ├── static │ │ │ │ │ │ └── rx │ │ │ │ │ │ │ └── buffer │ │ │ │ │ │ │ └── num.h │ │ │ │ │ └── tx │ │ │ │ │ │ ├── ba │ │ │ │ │ │ └── win.h │ │ │ │ │ │ └── buffer │ │ │ │ │ │ └── type.h │ │ │ │ └── xtal │ │ │ │ │ ├── freq.h │ │ │ │ │ └── freq │ │ │ │ │ └── 40.h │ │ │ ├── esptoolpy │ │ │ │ ├── after.h │ │ │ │ ├── after │ │ │ │ │ └── reset.h │ │ │ │ ├── baud.h │ │ │ │ ├── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ │ └── val.h │ │ │ │ ├── before.h │ │ │ │ ├── before │ │ │ │ │ └── reset.h │ │ │ │ ├── compressed.h │ │ │ │ ├── flashfreq.h │ │ │ │ ├── flashfreq │ │ │ │ │ └── 40m.h │ │ │ │ ├── flashmode.h │ │ │ │ ├── flashsize.h │ │ │ │ ├── flashsize │ │ │ │ │ ├── 4mb.h │ │ │ │ │ └── detect.h │ │ │ │ └── port.h │ │ │ ├── fatfs │ │ │ │ ├── codepage.h │ │ │ │ ├── codepage │ │ │ │ │ └── 437.h │ │ │ │ ├── fs │ │ │ │ │ └── lock.h │ │ │ │ ├── lfn │ │ │ │ │ └── none.h │ │ │ │ ├── per │ │ │ │ │ └── file │ │ │ │ │ │ └── cache.h │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── flashmode │ │ │ │ └── dio.h │ │ │ ├── four │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── freertos │ │ │ │ ├── assert │ │ │ │ │ ├── fail │ │ │ │ │ │ └── abort.h │ │ │ │ │ └── on │ │ │ │ │ │ └── untested │ │ │ │ │ │ └── function.h │ │ │ │ ├── check │ │ │ │ │ └── stackoverflow │ │ │ │ │ │ └── canary.h │ │ │ │ ├── coretimer │ │ │ │ │ └── 0.h │ │ │ │ ├── hz.h │ │ │ │ ├── idle │ │ │ │ │ └── task │ │ │ │ │ │ └── stacksize.h │ │ │ │ ├── interrupt │ │ │ │ │ └── backtrace.h │ │ │ │ ├── isr │ │ │ │ │ └── stacksize.h │ │ │ │ ├── max │ │ │ │ │ └── task │ │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── queue │ │ │ │ │ └── registry │ │ │ │ │ │ └── size.h │ │ │ │ └── thread │ │ │ │ │ └── local │ │ │ │ │ └── storage │ │ │ │ │ └── pointers.h │ │ │ ├── heap │ │ │ │ └── poisoning │ │ │ │ │ └── disabled.h │ │ │ ├── int │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── ms.h │ │ │ ├── ip │ │ │ │ └── lost │ │ │ │ │ └── timer │ │ │ │ │ └── interval.h │ │ │ ├── ipc │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── libsodium │ │ │ │ └── use │ │ │ │ │ └── mbedtls │ │ │ │ │ └── sha.h │ │ │ ├── log │ │ │ │ ├── bootloader │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ │ └── info.h │ │ │ │ ├── colors.h │ │ │ │ └── default │ │ │ │ │ ├── level.h │ │ │ │ │ └── level │ │ │ │ │ └── info.h │ │ │ ├── lwip │ │ │ │ ├── dhcp │ │ │ │ │ ├── does │ │ │ │ │ │ └── arp │ │ │ │ │ │ │ └── check.h │ │ │ │ │ └── max │ │ │ │ │ │ └── ntp │ │ │ │ │ │ └── servers.h │ │ │ │ ├── dhcps │ │ │ │ │ ├── lease │ │ │ │ │ │ └── unit.h │ │ │ │ │ └── max │ │ │ │ │ │ └── station │ │ │ │ │ │ └── num.h │ │ │ │ ├── etharp │ │ │ │ │ └── trust │ │ │ │ │ │ └── ip │ │ │ │ │ │ └── mac.h │ │ │ │ ├── loopback │ │ │ │ │ └── max │ │ │ │ │ │ └── pbufs.h │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── listening │ │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── raw │ │ │ │ │ │ └── pcbs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ └── udp │ │ │ │ │ │ └── pcbs.h │ │ │ │ ├── netif │ │ │ │ │ └── loopback.h │ │ │ │ └── so │ │ │ │ │ ├── reuse.h │ │ │ │ │ └── reuse │ │ │ │ │ └── rxtoall.h │ │ │ ├── main │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── make │ │ │ │ └── warn │ │ │ │ │ └── undefined │ │ │ │ │ └── variables.h │ │ │ ├── mbedtls │ │ │ │ ├── aes │ │ │ │ │ └── c.h │ │ │ │ ├── ccm │ │ │ │ │ └── c.h │ │ │ │ ├── ecdh │ │ │ │ │ └── c.h │ │ │ │ ├── ecdsa │ │ │ │ │ └── c.h │ │ │ │ ├── ecp │ │ │ │ │ ├── c.h │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── bp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── bp512r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp192r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp224r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256k1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp256r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ ├── secp384r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ │ └── secp521r1 │ │ │ │ │ │ │ └── enabled.h │ │ │ │ │ └── nist │ │ │ │ │ │ └── optim.h │ │ │ │ ├── gcm │ │ │ │ │ └── c.h │ │ │ │ ├── hardware │ │ │ │ │ └── aes.h │ │ │ │ ├── have │ │ │ │ │ └── time.h │ │ │ │ ├── key │ │ │ │ │ └── exchange │ │ │ │ │ │ ├── dhe │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── ecdhe │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ └── rsa.h │ │ │ │ │ │ ├── elliptic │ │ │ │ │ │ └── curve.h │ │ │ │ │ │ └── rsa.h │ │ │ │ ├── pem │ │ │ │ │ ├── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── write │ │ │ │ │ │ └── c.h │ │ │ │ ├── rc4 │ │ │ │ │ └── disabled.h │ │ │ │ ├── ssl │ │ │ │ │ ├── alpn.h │ │ │ │ │ ├── max │ │ │ │ │ │ └── content │ │ │ │ │ │ │ └── len.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── tls1.h │ │ │ │ │ │ └── tls1 │ │ │ │ │ │ │ ├── 1.h │ │ │ │ │ │ │ └── 2.h │ │ │ │ │ ├── renegotiation.h │ │ │ │ │ └── session │ │ │ │ │ │ └── tickets.h │ │ │ │ ├── tls │ │ │ │ │ ├── client.h │ │ │ │ │ ├── enabled.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── server │ │ │ │ │ │ └── and │ │ │ │ │ │ └── client.h │ │ │ │ └── x509 │ │ │ │ │ ├── crl │ │ │ │ │ └── parse │ │ │ │ │ │ └── c.h │ │ │ │ │ └── csr │ │ │ │ │ └── parse │ │ │ │ │ └── c.h │ │ │ ├── memmap │ │ │ │ └── smp.h │ │ │ ├── monitor │ │ │ │ ├── baud.h │ │ │ │ └── baud │ │ │ │ │ ├── 115200b.h │ │ │ │ │ └── other │ │ │ │ │ └── val.h │ │ │ ├── newlib │ │ │ │ ├── stdin │ │ │ │ │ └── line │ │ │ │ │ │ └── ending │ │ │ │ │ │ └── cr.h │ │ │ │ └── stdout │ │ │ │ │ └── line │ │ │ │ │ └── ending │ │ │ │ │ └── crlf.h │ │ │ ├── number │ │ │ │ └── of │ │ │ │ │ └── universal │ │ │ │ │ └── mac │ │ │ │ │ └── address.h │ │ │ ├── openssl │ │ │ │ └── assert │ │ │ │ │ └── do │ │ │ │ │ └── nothing.h │ │ │ ├── optimization │ │ │ │ ├── assertions │ │ │ │ │ └── enabled.h │ │ │ │ └── level │ │ │ │ │ └── debug.h │ │ │ ├── partition │ │ │ │ └── table │ │ │ │ │ ├── custom │ │ │ │ │ ├── app │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── offset.h │ │ │ │ │ └── filename.h │ │ │ │ │ ├── filename.h │ │ │ │ │ └── single │ │ │ │ │ └── app.h │ │ │ ├── python.h │ │ │ ├── spi │ │ │ │ └── flash │ │ │ │ │ ├── rom │ │ │ │ │ └── driver │ │ │ │ │ │ └── patch.h │ │ │ │ │ └── writing │ │ │ │ │ └── dangerous │ │ │ │ │ └── regions │ │ │ │ │ └── aborts.h │ │ │ ├── spiffs │ │ │ │ ├── cache.h │ │ │ │ ├── cache │ │ │ │ │ └── wr.h │ │ │ │ ├── gc │ │ │ │ │ └── max │ │ │ │ │ │ └── runs.h │ │ │ │ ├── max │ │ │ │ │ └── partitions.h │ │ │ │ ├── meta │ │ │ │ │ └── length.h │ │ │ │ ├── obj │ │ │ │ │ └── name │ │ │ │ │ │ └── len.h │ │ │ │ ├── page │ │ │ │ │ └── check.h │ │ │ │ └── use │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── magic │ │ │ │ │ └── length.h │ │ │ │ │ └── mtime.h │ │ │ ├── stack │ │ │ │ └── check │ │ │ │ │ └── none.h │ │ │ ├── system │ │ │ │ └── event │ │ │ │ │ ├── queue │ │ │ │ │ └── size.h │ │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── task │ │ │ │ ├── wdt.h │ │ │ │ └── wdt │ │ │ │ │ ├── check │ │ │ │ │ └── idle │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── cpu0.h │ │ │ │ │ │ └── cpu1.h │ │ │ │ │ └── timeout │ │ │ │ │ └── s.h │ │ │ ├── tcp │ │ │ │ ├── maxrtx.h │ │ │ │ ├── msl.h │ │ │ │ ├── mss.h │ │ │ │ ├── oversize │ │ │ │ │ └── mss.h │ │ │ │ ├── queue │ │ │ │ │ └── ooseq.h │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ ├── snd │ │ │ │ │ └── buf │ │ │ │ │ │ └── default.h │ │ │ │ ├── synmaxrtx.h │ │ │ │ └── wnd │ │ │ │ │ └── default.h │ │ │ ├── tcpip │ │ │ │ ├── recvmbox │ │ │ │ │ └── size.h │ │ │ │ └── task │ │ │ │ │ └── stack │ │ │ │ │ └── size.h │ │ │ ├── timer │ │ │ │ ├── queue │ │ │ │ │ └── length.h │ │ │ │ └── task │ │ │ │ │ ├── priority.h │ │ │ │ │ └── stack │ │ │ │ │ ├── depth.h │ │ │ │ │ └── size.h │ │ │ ├── toolprefix.h │ │ │ ├── tracemem │ │ │ │ └── reserve │ │ │ │ │ └── dram.h │ │ │ ├── tristate.conf │ │ │ ├── udp │ │ │ │ └── recvmbox │ │ │ │ │ └── size.h │ │ │ ├── ulp │ │ │ │ └── coproc │ │ │ │ │ └── reserve │ │ │ │ │ └── mem.h │ │ │ └── wl │ │ │ │ └── sector │ │ │ │ ├── size.h │ │ │ │ └── size │ │ │ │ └── 4096.h │ │ └── sdkconfig.h │ ├── jsmn │ │ └── component_project_vars.mk │ ├── json │ │ └── component_project_vars.mk │ ├── libsodium │ │ └── component_project_vars.mk │ ├── log │ │ └── component_project_vars.mk │ ├── lwip │ │ └── component_project_vars.mk │ ├── main │ │ └── component_project_vars.mk │ ├── mbedtls │ │ └── component_project_vars.mk │ ├── mdns │ │ └── component_project_vars.mk │ ├── micro-ecc │ │ └── component_project_vars.mk │ ├── newlib │ │ └── component_project_vars.mk │ ├── nghttp │ │ └── component_project_vars.mk │ ├── nvs_flash │ │ └── component_project_vars.mk │ ├── openssl │ │ └── component_project_vars.mk │ ├── partition_table │ │ └── component_project_vars.mk │ ├── partitions_singleapp.bin │ ├── pthread │ │ └── component_project_vars.mk │ ├── sdmmc │ │ └── component_project_vars.mk │ ├── smart_config.bin │ ├── soc │ │ └── component_project_vars.mk │ ├── spi_flash │ │ └── component_project_vars.mk │ ├── spiffs │ │ └── component_project_vars.mk │ ├── tcpip_adapter │ │ └── component_project_vars.mk │ ├── ulp │ │ └── component_project_vars.mk │ ├── vfs │ │ └── component_project_vars.mk │ ├── wear_levelling │ │ └── component_project_vars.mk │ ├── wpa_supplicant │ │ └── component_project_vars.mk │ └── xtensa-debug-module │ │ └── component_project_vars.mk ├── main │ ├── component.mk │ └── key_trigger.c ├── sdkconfig └── sdkconfig.old ├── 8_udp_client_server ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs ├── Makefile ├── README.md └── main │ ├── Kconfig.projbuild │ ├── XuHongUdp.c │ ├── XuHongUdp.h │ ├── component.mk │ └── udp_main.c ├── 9_tcp_server_client ├── Makefile ├── README.md └── main │ ├── Kconfig.projbuild │ ├── component.mk │ ├── tcp_main.c │ ├── xuhong_Tcp.c │ └── xuhong_Tcp.h ├── Document ├── File │ ├── com.example.airkissdemo.apk │ └── 使用说明.txt ├── README_EN.MD └── README_ZH.MD ├── LICENSE ├── README.md └── png └── esp32.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/.gitignore -------------------------------------------------------------------------------- /10_ws2812_RMT/README.md: -------------------------------------------------------------------------------- 1 | WS2812 驱动和示范! 2 | -------------------------------------------------------------------------------- /12_dns_server/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /15_XBlufi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/15_XBlufi/Makefile -------------------------------------------------------------------------------- /18_dht11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/18_dht11/Makefile -------------------------------------------------------------------------------- /18_dht11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/18_dht11/README.md -------------------------------------------------------------------------------- /18_dht11/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(COMPONENT_SRCS "main.c") 2 | 3 | register_component() 4 | -------------------------------------------------------------------------------- /19_s2_ws2812/README.md: -------------------------------------------------------------------------------- 1 | WS2812 驱动和示范! 2 | -------------------------------------------------------------------------------- /20_RFID_rc522/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "main.c") -------------------------------------------------------------------------------- /20_RFID_rc522/main/component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22_take_pic_http_to_cloud/components/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /22_take_pic_http_to_cloud/sdkconfig.defaults: -------------------------------------------------------------------------------- 1 | # 2 | 3 | -------------------------------------------------------------------------------- /24_esp32s2_s3_camera_wechat_mini/components/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /24_esp32s2_s3_camera_wechat_mini/sdkconfig.defaults: -------------------------------------------------------------------------------- 1 | # 2 | 3 | -------------------------------------------------------------------------------- /25_esp32c3_flash_w25q32/components/flash_w25qxx/component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/adc/cal/efuse/tp/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/adc/cal/efuse/vref/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/adc/cal/lut/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/adc2/disable/dac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/app/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/blink/gpio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/bootloader/vddsdio/boost/1/9v.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/brownout/det.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/brownout/det/lvl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/brownout/det/lvl/sel/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/bt/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/btdm/controller/pinned/to/core.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/console/uart/baudrate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/console/uart/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/console/uart/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/dma/rx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/dma/tx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/emac/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp/err/to/name/lookup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/apptrace/dest/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/apptrace/lock/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/debug/ocdaware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/deep/sleep/wakeup/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/default/cpu/freq/160.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/default/cpu/freq/mhz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/enable/coredump/to/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/panic/print/reboot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/phy/calibration/and/data/storage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/phy/max/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/phy/max/wifi/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/pthread/task/prio/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/pthread/task/stack/size/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/rtc/clk/cal/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/rtc/clock/source/internal/rc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/rtc/xtal/bootstrap/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/time/syscall/use/rtc/frc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/ampdu/rx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/ampdu/tx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/dynamic/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/dynamic/tx/buffer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/dynamic/tx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/nvs/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/rx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/static/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/tx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/wifi/tx/buffer/type.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/xtal/freq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esp32/xtal/freq/40.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/after.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/after/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/before.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/before/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/compressed.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashfreq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashfreq/40m.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashsize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashsize/4mb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/flashsize/detect.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/esptoolpy/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/codepage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/codepage/437.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/fs/lock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/lfn/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/per/file/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/fatfs/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/flashmode/dio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/four/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/assert/fail/abort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/assert/on/untested/function.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/check/stackoverflow/canary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/coretimer/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/hz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/idle/task/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/interrupt/backtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/isr/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/max/task/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/queue/registry/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/freertos/thread/local/storage/pointers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/heap/poisoning/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/int/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/int/wdt/check/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/int/wdt/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/ip/lost/timer/interval.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/ipc/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/libsodium/use/mbedtls/sha.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/log/bootloader/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/log/bootloader/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/log/colors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/log/default/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/log/default/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/dhcp/does/arp/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/dhcp/max/ntp/servers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/dhcps/lease/unit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/dhcps/max/station/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/etharp/trust/ip/mac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/loopback/max/pbufs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/max/active/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/max/listening/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/max/raw/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/max/sockets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/max/udp/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/netif/loopback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/so/reuse.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/lwip/so/reuse/rxtoall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/main/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/make/warn/undefined/variables.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/aes/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ccm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecdh/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecdsa/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/bp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/bp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/bp512r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/curve25519/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp192k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp192r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp224k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp224r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp256k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/dp/secp521r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ecp/nist/optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/gcm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/hardware/aes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/have/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/dhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/ecdh/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/ecdh/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/ecdhe/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/ecdhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/elliptic/curve.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/key/exchange/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/pem/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/pem/write/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/rc4/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/alpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/max/content/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/proto/tls1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/proto/tls1/1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/proto/tls1/2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/renegotiation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/ssl/session/tickets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/tls/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/tls/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/tls/server.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/tls/server/and/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/x509/crl/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/mbedtls/x509/csr/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/monitor/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/monitor/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/monitor/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/newlib/stdin/line/ending/cr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/newlib/stdout/line/ending/crlf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/number/of/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/openssl/assert/do/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/optimization/assertions/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/optimization/level/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/partition/table/custom/app/bin/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/partition/table/custom/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/partition/table/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/partition/table/md5.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/partition/table/single/app.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spi/flash/rom/driver/patch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spi/flash/writing/dangerous/regions/aborts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/cache/wr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/gc/max/runs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/max/partitions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/meta/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/obj/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/page/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/page/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/use/magic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/use/magic/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/spiffs/use/mtime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/stack/check/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/system/event/queue/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/system/event/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/task/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/task/wdt/check/idle/task/cpu0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/task/wdt/check/idle/task/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/task/wdt/timeout/s.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/maxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/msl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/oversize/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/queue/ooseq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/snd/buf/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/synmaxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcp/wnd/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcpip/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tcpip/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/timer/queue/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/timer/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/timer/task/stack/depth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/timer/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/toolprefix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/tracemem/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/udp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/ulp/coproc/reserve/mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/wl/sector/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_gpio_interrupt/build/include/config/wl/sector/size/4096.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/4_timer/.cproject -------------------------------------------------------------------------------- /4_timer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/4_timer/.project -------------------------------------------------------------------------------- /4_timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/4_timer/Makefile -------------------------------------------------------------------------------- /4_timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/4_timer/README.md -------------------------------------------------------------------------------- /4_timer/build/include/config/adc/cal/efuse/tp/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/adc/cal/efuse/vref/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/adc/cal/lut/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/adc2/disable/dac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/app/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/blink/gpio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/bootloader/vddsdio/boost/1/9v.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/brownout/det.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/brownout/det/lvl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/brownout/det/lvl/sel/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/bt/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/btdm/controller/pinned/to/core.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/console/uart/baudrate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/console/uart/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/console/uart/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/dma/rx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/dma/tx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/emac/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp/err/to/name/lookup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/apptrace/dest/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/apptrace/lock/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/debug/ocdaware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/deep/sleep/wakeup/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/default/cpu/freq/160.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/default/cpu/freq/mhz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/enable/coredump/to/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/panic/print/reboot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/phy/calibration/and/data/storage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/phy/max/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/phy/max/wifi/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/pthread/task/prio/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/pthread/task/stack/size/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/rtc/clk/cal/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/rtc/clock/source/internal/rc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/rtc/xtal/bootstrap/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/time/syscall/use/rtc/frc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/ampdu/rx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/ampdu/tx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/dynamic/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/dynamic/tx/buffer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/dynamic/tx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/nvs/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/rx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/static/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/tx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/wifi/tx/buffer/type.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/xtal/freq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esp32/xtal/freq/40.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/after.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/after/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/before.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/before/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/compressed.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashfreq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashfreq/40m.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashsize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashsize/4mb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/flashsize/detect.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/esptoolpy/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/codepage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/codepage/437.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/fs/lock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/lfn/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/per/file/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/fatfs/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/flashmode/dio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/four/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/assert/fail/abort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/assert/on/untested/function.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/check/stackoverflow/canary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/coretimer/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/hz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/idle/task/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/interrupt/backtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/isr/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/max/task/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/queue/registry/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/freertos/thread/local/storage/pointers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/heap/poisoning/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/int/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/int/wdt/check/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/int/wdt/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/ip/lost/timer/interval.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/ipc/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/libsodium/use/mbedtls/sha.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/log/bootloader/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/log/bootloader/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/log/colors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/log/default/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/log/default/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/dhcp/does/arp/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/dhcp/max/ntp/servers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/dhcps/lease/unit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/dhcps/max/station/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/etharp/trust/ip/mac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/loopback/max/pbufs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/max/active/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/max/listening/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/max/raw/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/max/sockets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/max/udp/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/netif/loopback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/so/reuse.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/lwip/so/reuse/rxtoall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/main/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/make/warn/undefined/variables.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/aes/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ccm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecdh/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecdsa/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/bp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/bp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/bp512r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/curve25519/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp192k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp192r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp224k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp224r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp256k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/dp/secp521r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ecp/nist/optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/gcm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/hardware/aes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/have/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/dhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/ecdh/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/ecdh/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/ecdhe/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/ecdhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/elliptic/curve.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/key/exchange/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/pem/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/pem/write/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/rc4/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/alpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/max/content/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/proto/tls1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/proto/tls1/1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/proto/tls1/2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/renegotiation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/ssl/session/tickets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/tls/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/tls/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/tls/server.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/tls/server/and/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/x509/crl/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/mbedtls/x509/csr/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/monitor/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/monitor/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/monitor/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/newlib/stdin/line/ending/cr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/newlib/stdout/line/ending/crlf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/number/of/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/openssl/assert/do/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/optimization/assertions/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/optimization/level/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/partition/table/custom/app/bin/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/partition/table/custom/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/partition/table/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/partition/table/md5.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/partition/table/single/app.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spi/flash/rom/driver/patch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spi/flash/writing/dangerous/regions/aborts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/cache/wr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/gc/max/runs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/max/partitions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/meta/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/obj/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/page/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/page/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/use/magic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/use/magic/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/spiffs/use/mtime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/stack/check/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/system/event/queue/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/system/event/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/task/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/task/wdt/check/idle/task/cpu0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/task/wdt/check/idle/task/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/task/wdt/timeout/s.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/maxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/msl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/oversize/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/queue/ooseq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/snd/buf/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/synmaxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcp/wnd/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcpip/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tcpip/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/timer/queue/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/timer/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/timer/task/stack/depth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/timer/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/toolprefix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/tracemem/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/udp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/ulp/coproc/reserve/mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/wl/sector/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/build/include/config/wl/sector/size/4096.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4_timer/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/4_timer/sdkconfig -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/adc/cal/efuse/tp/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/adc/cal/efuse/vref/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/adc/cal/lut/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/adc2/disable/dac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/app/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/blink/gpio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/bootloader/vddsdio/boost/1/9v.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/brownout/det.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/brownout/det/lvl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/brownout/det/lvl/sel/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/bt/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/btdm/controller/pinned/to/core.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/console/uart/baudrate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/console/uart/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/console/uart/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/dma/rx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/dma/tx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/emac/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp/err/to/name/lookup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/apptrace/dest/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/apptrace/lock/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/debug/ocdaware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/deep/sleep/wakeup/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/default/cpu/freq/160.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/default/cpu/freq/mhz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/enable/coredump/to/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/panic/print/reboot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/phy/calibration/and/data/storage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/phy/max/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/phy/max/wifi/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/pthread/task/prio/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/pthread/task/stack/size/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/rtc/clk/cal/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/rtc/clock/source/internal/rc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/rtc/xtal/bootstrap/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/time/syscall/use/rtc/frc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/ampdu/rx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/ampdu/tx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/dynamic/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/dynamic/tx/buffer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/dynamic/tx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/nvs/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/rx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/static/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/tx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/wifi/tx/buffer/type.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/xtal/freq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esp32/xtal/freq/40.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/after.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/after/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/before.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/before/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/compressed.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashfreq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashfreq/40m.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashsize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashsize/4mb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/flashsize/detect.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/esptoolpy/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/codepage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/codepage/437.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/fs/lock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/lfn/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/per/file/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/fatfs/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/flashmode/dio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/four/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/assert/fail/abort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/assert/on/untested/function.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/check/stackoverflow/canary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/coretimer/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/hz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/idle/task/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/interrupt/backtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/isr/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/max/task/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/queue/registry/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/freertos/thread/local/storage/pointers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/heap/poisoning/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/int/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/int/wdt/check/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/int/wdt/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/ip/lost/timer/interval.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/ipc/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/libsodium/use/mbedtls/sha.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/log/bootloader/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/log/bootloader/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/log/colors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/log/default/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/log/default/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/dhcp/does/arp/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/dhcp/max/ntp/servers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/dhcps/lease/unit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/dhcps/max/station/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/etharp/trust/ip/mac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/loopback/max/pbufs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/max/active/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/max/listening/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/max/raw/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/max/sockets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/max/udp/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/netif/loopback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/so/reuse.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/lwip/so/reuse/rxtoall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/main/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/make/warn/undefined/variables.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/aes/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ccm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecdh/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecdsa/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/bp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/bp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/bp512r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/curve25519/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp192k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp192r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp224k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp224r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp256k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/dp/secp521r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ecp/nist/optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/gcm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/hardware/aes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/have/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/dhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/ecdh/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/ecdh/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/ecdhe/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/ecdhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/elliptic/curve.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/key/exchange/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/pem/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/pem/write/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/rc4/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/alpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/max/content/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/proto/tls1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/proto/tls1/1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/proto/tls1/2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/renegotiation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/ssl/session/tickets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/tls/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/tls/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/tls/server.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/tls/server/and/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/x509/crl/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/mbedtls/x509/csr/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/monitor/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/monitor/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/monitor/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/newlib/stdin/line/ending/cr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/newlib/stdout/line/ending/crlf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/number/of/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/openssl/assert/do/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/optimization/assertions/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/optimization/level/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/partition/table/custom/app/bin/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/partition/table/custom/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/partition/table/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/partition/table/md5.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/partition/table/single/app.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spi/flash/rom/driver/patch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spi/flash/writing/dangerous/regions/aborts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/cache/wr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/gc/max/runs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/max/partitions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/meta/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/obj/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/page/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/page/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/use/magic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/use/magic/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/spiffs/use/mtime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/stack/check/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/system/event/queue/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/system/event/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/task/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/task/wdt/check/idle/task/cpu0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/task/wdt/check/idle/task/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/task/wdt/timeout/s.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/maxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/msl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/oversize/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/queue/ooseq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/snd/buf/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/synmaxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcp/wnd/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcpip/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tcpip/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/timer/queue/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/timer/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/timer/task/stack/depth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/timer/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/toolprefix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/tracemem/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/udp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/ulp/coproc/reserve/mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/wl/sector/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_ledc_pwm/build/include/config/wl/sector/size/4096.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/adc/cal/efuse/tp/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/adc/cal/efuse/vref/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/adc/cal/lut/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/app/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/bootloader/vddsdio/boost/1/9v.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/brownout/det.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/brownout/det/lvl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/brownout/det/lvl/sel/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/bt/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/btdm/controller/pinned/to/core.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/console/uart/baudrate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/console/uart/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/console/uart/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/dma/rx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/dma/tx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/emac/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/apptrace/dest/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/apptrace/lock/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/debug/ocdaware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/deep/sleep/wakeup/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/default/cpu/freq/160.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/default/cpu/freq/mhz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/enable/coredump/to/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/panic/print/reboot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/phy/calibration/and/data/storage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/phy/max/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/phy/max/wifi/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/pthread/task/prio/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/pthread/task/stack/size/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/rtc/clk/cal/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/rtc/clock/source/internal/rc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/time/syscall/use/rtc/frc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/ampdu/rx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/ampdu/tx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/dynamic/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/dynamic/tx/buffer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/dynamic/tx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/nvs/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/rx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/static/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/tx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/wifi/tx/buffer/type.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/xtal/freq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esp32/xtal/freq/40.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/after.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/after/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/before.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/before/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/compressed.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashfreq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashfreq/40m.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashsize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashsize/4mb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/flashsize/detect.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/esptoolpy/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/codepage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/codepage/437.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/fs/lock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/lfn/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/per/file/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/fatfs/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/flashmode/dio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/four/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/assert/fail/abort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/assert/on/untested/function.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/check/stackoverflow/canary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/coretimer/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/hz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/idle/task/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/interrupt/backtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/isr/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/max/task/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/queue/registry/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/freertos/thread/local/storage/pointers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/heap/poisoning/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/int/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/int/wdt/check/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/int/wdt/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/ip/lost/timer/interval.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/ipc/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/libsodium/use/mbedtls/sha.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/log/bootloader/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/log/bootloader/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/log/colors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/log/default/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/log/default/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/dhcp/does/arp/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/dhcp/max/ntp/servers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/dhcps/lease/unit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/dhcps/max/station/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/etharp/trust/ip/mac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/loopback/max/pbufs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/max/active/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/max/listening/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/max/raw/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/max/sockets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/max/udp/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/netif/loopback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/so/reuse.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/lwip/so/reuse/rxtoall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/main/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/make/warn/undefined/variables.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/aes/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ccm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecdh/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecdsa/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/bp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/bp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/bp512r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/curve25519/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp192k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp192r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp224k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp224r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp256k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/dp/secp521r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ecp/nist/optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/gcm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/hardware/aes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/have/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/dhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/ecdh/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/ecdh/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/ecdhe/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/ecdhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/elliptic/curve.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/key/exchange/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/pem/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/pem/write/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/rc4/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/alpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/max/content/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/proto/tls1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/proto/tls1/1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/proto/tls1/2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/renegotiation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/ssl/session/tickets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/tls/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/tls/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/tls/server.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/tls/server/and/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/x509/crl/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/mbedtls/x509/csr/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/memmap/smp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/monitor/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/monitor/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/monitor/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/newlib/stdin/line/ending/cr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/newlib/stdout/line/ending/crlf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/number/of/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/openssl/assert/do/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/optimization/assertions/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/optimization/level/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/partition/table/custom/app/bin/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/partition/table/custom/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/partition/table/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/partition/table/single/app.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spi/flash/rom/driver/patch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spi/flash/writing/dangerous/regions/aborts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/cache/wr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/gc/max/runs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/max/partitions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/meta/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/obj/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/page/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/use/magic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/use/magic/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/spiffs/use/mtime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/stack/check/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/system/event/queue/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/system/event/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/task/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/task/wdt/check/idle/task/cpu0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/task/wdt/check/idle/task/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/task/wdt/timeout/s.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/maxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/msl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/oversize/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/queue/ooseq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/snd/buf/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/synmaxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcp/wnd/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcpip/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tcpip/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/timer/queue/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/timer/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/timer/task/stack/depth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/timer/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/toolprefix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/tracemem/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/udp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/ulp/coproc/reserve/mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/wl/sector/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_smartConfig_AirKiss/build/include/config/wl/sector/size/4096.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/adc/cal/efuse/tp/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/adc/cal/efuse/vref/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/adc/cal/lut/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/app/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/bootloader/vddsdio/boost/1/9v.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/brownout/det.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/brownout/det/lvl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/brownout/det/lvl/sel/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/bt/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/btdm/controller/pinned/to/core.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/console/uart/baudrate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/console/uart/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/console/uart/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/dma/rx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/dma/tx/buf/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/emac/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/apptrace/dest/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/apptrace/lock/enable.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/debug/ocdaware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/deep/sleep/wakeup/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/default/cpu/freq/160.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/default/cpu/freq/mhz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/enable/coredump/to/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/panic/print/reboot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/phy/calibration/and/data/storage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/phy/max/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/phy/max/wifi/tx/power.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/pthread/task/prio/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/pthread/task/stack/size/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/rtc/clk/cal/cycles.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/rtc/clock/source/internal/rc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/time/syscall/use/rtc/frc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/ampdu/rx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/ampdu/tx/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/dynamic/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/dynamic/tx/buffer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/dynamic/tx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/nvs/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/rx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/static/rx/buffer/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/tx/ba/win.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/wifi/tx/buffer/type.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/xtal/freq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esp32/xtal/freq/40.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/after.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/after/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/before.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/before/reset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/compressed.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashfreq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashfreq/40m.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashsize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashsize/4mb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/flashsize/detect.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/esptoolpy/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/codepage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/codepage/437.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/fs/lock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/lfn/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/per/file/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/fatfs/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/flashmode/dio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/four/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/assert/fail/abort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/assert/on/untested/function.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/check/stackoverflow/canary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/coretimer/0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/hz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/idle/task/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/interrupt/backtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/isr/stacksize.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/max/task/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/queue/registry/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/freertos/thread/local/storage/pointers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/heap/poisoning/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/int/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/int/wdt/check/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/int/wdt/timeout/ms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/ip/lost/timer/interval.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/ipc/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/libsodium/use/mbedtls/sha.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/log/bootloader/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/log/bootloader/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/log/colors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/log/default/level.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/log/default/level/info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/dhcp/does/arp/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/dhcp/max/ntp/servers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/dhcps/lease/unit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/dhcps/max/station/num.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/etharp/trust/ip/mac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/loopback/max/pbufs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/max/active/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/max/listening/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/max/raw/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/max/sockets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/max/udp/pcbs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/netif/loopback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/so/reuse.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/lwip/so/reuse/rxtoall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/main/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/make/warn/undefined/variables.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/aes/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ccm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecdh/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecdsa/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/bp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/bp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/bp512r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/curve25519/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp192k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp192r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp224k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp224r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp256k1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp256r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp384r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/dp/secp521r1/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ecp/nist/optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/gcm/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/hardware/aes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/have/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/dhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/ecdh/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/ecdh/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/ecdhe/ecdsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/ecdhe/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/elliptic/curve.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/key/exchange/rsa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/pem/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/pem/write/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/rc4/disabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/alpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/max/content/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/proto/tls1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/proto/tls1/1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/proto/tls1/2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/renegotiation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/ssl/session/tickets.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/tls/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/tls/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/tls/server.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/tls/server/and/client.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/x509/crl/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/mbedtls/x509/csr/parse/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/memmap/smp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/monitor/baud.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/monitor/baud/115200b.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/monitor/baud/other/val.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/newlib/stdin/line/ending/cr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/newlib/stdout/line/ending/crlf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/number/of/universal/mac/address.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/openssl/assert/do/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/optimization/assertions/enabled.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/optimization/level/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/partition/table/custom/app/bin/offset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/partition/table/custom/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/partition/table/filename.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/partition/table/single/app.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spi/flash/rom/driver/patch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spi/flash/writing/dangerous/regions/aborts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/cache/wr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/gc/max/runs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/max/partitions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/meta/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/obj/name/len.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/page/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/use/magic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/use/magic/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/spiffs/use/mtime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/stack/check/none.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/system/event/queue/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/system/event/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/task/wdt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/task/wdt/check/idle/task/cpu0.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/task/wdt/check/idle/task/cpu1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/task/wdt/timeout/s.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/maxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/msl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/oversize/mss.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/queue/ooseq.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/snd/buf/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/synmaxrtx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcp/wnd/default.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcpip/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tcpip/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/timer/queue/length.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/timer/task/priority.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/timer/task/stack/depth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/timer/task/stack/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/toolprefix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/tracemem/reserve/dram.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/udp/recvmbox/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/ulp/coproc/reserve/mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/wl/sector/size.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7_Key_Short_Long/build/include/config/wl/sector/size/4096.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8_udp_client_server/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 实现UDP客户端和服务器端! 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /9_tcp_server_client/README.md: -------------------------------------------------------------------------------- 1 | - esp as a tcp server or client -------------------------------------------------------------------------------- /Document/README_EN.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/README.md -------------------------------------------------------------------------------- /png/esp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhongv/StudyInEsp32/HEAD/png/esp32.png --------------------------------------------------------------------------------