[beken-72xx] Mark SSL client as broken

This commit is contained in:
Kuba Szczodrzyński
2022-06-30 19:35:43 +02:00
parent b44898f08d
commit 23410c618d
3 changed files with 4 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ Wire | ❗ | ❌
**OTHER LIBRARIES** | |
Wi-Fi STA/AP/Mixed | ✔️ | ✔️/❌/❌
Wi-Fi Events | ✔️ | ❌
TCP Client (SSL) | ✔️ (✔️) | ✔️ ()
TCP Client (SSL) | ✔️ (✔️) | ✔️ ()
TCP Server | ✔️ | ❓
IPv6 | ❌ | ❌
HTTP Client (SSL) | ✔️ (✔️) | ❓

View File

@@ -26,6 +26,8 @@ env.Append(
CPPDEFINES=[
# LibreTuya configuration
("LT_ARD_HAS_WIFI", "1"),
# macros
("mbedtls_net_set_nonblock", "net_set_nonblock"), # mbedtls_net_set_nonblock is commented out in tls_net.c
],
LINKFLAGS=[
# stdio wrappers (port/printf/printf.c)

View File

@@ -77,6 +77,7 @@ env.Append(
("WOLFSSL_BEKEN", env.Cfg("CFG_WPA3")),
# LwIP options
("LWIP_SO_RCVBUF", "1"), # for ioctl(FIONREAD)
"MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED",
],
ASFLAGS=[
"-mcpu=arm968e-s",