components updated with AP+STA mode logic reworked

This commit is contained in:
Bogdan Pilyugin 2024-02-19 16:16:55 +02:00
parent 9341602008
commit 52d6031fd6
8 changed files with 1349 additions and 782 deletions

674
.project

File diff suppressed because it is too large Load Diff

@ -1 +1 @@
Subproject commit 901a1ed4c3b7662aa5f36a601a416da31aef5119
Subproject commit c708785191707ba92d63f476f79287022a4ab7b4

@ -1 +1 @@
Subproject commit 4646d418c0f43eaf9c727c9f706ad5ef268c634b
Subproject commit 89d33842ec4ed7bf4d6fd2cc787bc964f7dead35

View File

@ -1,10 +1,10 @@
dependencies:
espressif/esp_modem:
component_hash: 95573f50c00d7c98233dea20459dd47792d9934e6eec1dfd85045c83cf81d802
component_hash: eaf036beecd76e9d1eed568f3f26036f076c4a5b02677cb742bcbecac0eec2bb
source:
service_url: https://api.components.espressif.com/
type: service
version: 1.0.3
version: 1.0.4
idf:
component_hash: null
source:
@ -24,6 +24,6 @@ dependencies:
path: .
type: git
version: b42825192c6455569f1a047b21140d6d1fe5e4ef
manifest_hash: 8f589d1268303deabf12834b0018f40550b1250232bd389b225ab21bd88eef02
target: esp32
manifest_hash: 10bf4fadcc1d0529947d607575fa9dd61a8ddc3c5d34e19cede6c86d4d73bf5c
target: esp32s3
version: 1.0.0

View File

@ -5,7 +5,7 @@ dependencies:
userbogd/esp_cron:
version: main
git: https://github.com/userbogd/esp_cron.git
espressif/esp_modem: "==1.0.3"
espressif/esp_modem: "==1.0.4"
## Required IDF version
idf:
version: ">=5.1.1"

718
sdkconfig

File diff suppressed because it is too large Load Diff

View File

@ -15,3 +15,13 @@ CONFIG_LWIP_MAX_SOCKETS=14
CONFIG_SPIFFS_OBJ_NAME_LEN=128
CONFIG_LWIP_LOCAL_HOSTNAME="T3HS"
# Override some defaults to enable PPP
CONFIG_LWIP_PPP_SUPPORT=y
CONFIG_LWIP_PPP_NOTIFY_PHASE_SUPPORT=y
CONFIG_LWIP_PPP_PAP_SUPPORT=y
CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=4096
# Do not enable IPV6 in dte<->dce link local
CONFIG_LWIP_PPP_ENABLE_IPV6=n
CONFIG_LWIP_DEBUG=y
CONFIG_LWIP_NETIF_DEBUG=y

File diff suppressed because it is too large Load Diff