This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I (27) boot: ESP-IDF v5.4.1-dirty 2nd stage bootloader | |
| I (27) boot: compile time May 1 2025 20:14:02 | |
| I (27) boot: Multicore bootloader | |
| I (28) boot: chip revision: v0.1 | |
| I (30) boot: efuse block revision: v1.2 | |
| I (34) boot.esp32s3: Boot SPI Speed : 80MHz | |
| I (38) boot.esp32s3: SPI Mode : DIO | |
| I (42) boot.esp32s3: SPI Flash Size : 16MB | |
| I (45) boot: Enabling RNG early entropy source... | |
| I (50) boot: Partition Table: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void wifiReconnectionTask(void *pvParameters) | |
| { | |
| while (1){ | |
| if (wifiDisconnected){ | |
| Serial.println("Reconnecting to WiFi..."); | |
| WiFi.disconnect(false, false); // Same as WiFi.Discon | |
| int retryCount = 0; | |
| while (WiFi.status() != WL_CONNECTED && retryCount < 4) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I (0) cpu_start: Starting scheduler on APP CPU. | |
| I (165) boot_comm: chip revision: 1, min. application chip revision: 0 | |
| I (195) boot_comm: chip revision: 1, min. application chip revision: 0 | |
| I (655) APP: bsp_dcu_v4_0_0.c; bsp_init:59 IO expander found | |
| I (655) APP: main.c; app_main:83 BSP for HW rev v4.0.0 initialized successfully. | |
| W (655) APP: relay_functions.c; create_relay_timers:157 Relay timers created successfully | |
| I (665) gpio: GPIO[14]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:2 | |
| I (675) gpio: GPIO[15]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:2 | |
| I (685) APP: app_ethernet.c; phy_device_power:24 Power On Ethernet PHY | |
| I (705) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ly from 185.179.202.65: bytes=32 time=48ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=45ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=45ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=48ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=45ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=46ms TTL=55 | |
| Request timed out. | |
| Reply from 185.179.202.65: bytes=32 time=47ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=58ms TTL=55 | |
| Reply from 185.179.202.65: bytes=32 time=51ms TTL=55 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* HTTPS GET Example using plain mbedTLS sockets | |
| * | |
| * Contacts the howsmyssl.com API via TLS v1.2 and reads a JSON | |
| * response. | |
| * | |
| * Adapted from the ssl_client1 example in mbedtls. | |
| * | |
| * Original Copyright (C) 2006-2016, ARM Limited, All Rights Reserved, Apache 2.0 License. | |
| * Additions Copyright (C) Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD, Apache 2.0 License. | |
| * |