ESP-wifi-蓝牙

wifi:三个步骤 getting_started

partitions.csv

Name, Type, SubType, Offset, Size, Flags

Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap

nvs, data, nvs, , 0x4000,

otadata, data, ota, , 0x2000,

phy_init, data, phy, , 0x1000,

Original App Section

ota_0, app, ota_0, , 1800K,

New App Section

ota_1, app, ota_1, , 1800K,
Kconfig.projbuild

menu "*****(自行取名) Configuration"

config ESP_WIFI_SSID

string "WiFi SSID"

default "myssid"

help

SSID (network name) for the example to connect to.

config ESP_WIFI_PASSWORD

string "WiFi Password"

default "mypassword"

help

WiFi password (WPA or WPA2) for the example to use.

choice ESP_WIFI_SAE_MODE

prompt "WPA3 SAE mode selection"

default ESP_WPA3_SAE_PWE_BOTH

help

Select mode for SAE as Hunt and Peck, H2E or both.

config ESP_WPA3_SAE_PWE_HUNT_AND_PECK

bool "HUNT AND PECK"

config ESP_WPA3_SAE_PWE_HASH_TO_ELEMENT

bool "H2E"

config ESP_WPA3_SAE_PWE_BOTH

bool "BOTH"

endchoice

config ESP_WIFI_PW_ID

string "PASSWORD IDENTIFIER"

depends on ESP_WPA3_SAE_PWE_HASH_TO_ELEMENT|| ESP_WPA3_SAE_PWE_BOTH

default ""

help

password identifier for SAE H2E

config ESP_MAXIMUM_RETRY

int "Maximum retry"

default 5

help

Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.

choice ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD

prompt "WiFi Scan auth mode threshold"

default ESP_WIFI_AUTH_WPA2_PSK

help

The weakest authmode to accept in the scan mode.

This value defaults to ESP_WIFI_AUTH_WPA2_PSK incase password is present and ESP_WIFI_AUTH_OPEN is used.

Please select ESP_WIFI_AUTH_WEP/ESP_WIFI_AUTH_WPA_PSK incase AP is operating in WEP/WPA mode.

config ESP_WIFI_AUTH_OPEN

bool "OPEN"

config ESP_WIFI_AUTH_WEP

bool "WEP"

config ESP_WIFI_AUTH_WPA_PSK

bool "WPA PSK"

config ESP_WIFI_AUTH_WPA2_PSK

bool "WPA2 PSK"

config ESP_WIFI_AUTH_WPA_WPA2_PSK

bool "WPA/WPA2 PSK"

config ESP_WIFI_AUTH_WPA3_PSK

bool "WPA3 PSK"

config ESP_WIFI_AUTH_WPA2_WPA3_PSK

bool "WPA2/WPA3 PSK"

config ESP_WIFI_AUTH_WAPI_PSK

bool "WAPI PSK"

endchoice

endmenu

蓝牙:

gatt_server
相关推荐
小小龙学IT4 分钟前
HTMX:让 HTML 重新成为前端核心的超轻量动态交互库
前端·html·交互
星栈4 分钟前
写 Makepad Demo 不难,难的是把它写成项目
前端·rust
用户059540174466 分钟前
localStorage清除策略踩坑实录:一个过期的token让我排查了3小时
前端·css
Nanachi8 分钟前
跨框架的前端源码定位,再加上点LLM
前端
啦啦啦啦啦zzzz12 分钟前
redis的持久化操作和主从复制与集群的关系及其应用
数据库·redis
IT策士27 分钟前
Redis 从入门到精通:分片之道 —— Redis Cluster
数据库·redis·缓存
人无远虑必有近忧!28 分钟前
fetch请求图片报跨域
前端·javascript
谢院柯28 分钟前
解决修改 node_modules 依赖库源码后重复安装问题的几种方案
前端
疯狂打码的少年31 分钟前
【程序语言与编译】NFA转DFA(子集构造法)
前端·笔记
半只小闲鱼33 分钟前
合并多个excel文件到一个文件中
前端·python·数据分析