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
相关推荐
tgethe2 小时前
mysql-视图详解
数据库·mysql
想学后端的前端工程师2 小时前
【Flutter跨平台开发实战指南:从零到上线-web技术栈】
前端·flutter
老王Bingo2 小时前
Qwen Code + Chrome DevTools MCP,让爬虫、数据采集、自动化测试效率提升 100 倍
前端·爬虫·chrome devtools
董世昌413 小时前
什么是扩展运算符?有什么使用场景?
开发语言·前端·javascript
Yaru113 小时前
Vue 3.6 预览版特性
javascript·vue.js
来杯三花豆奶3 小时前
Vue 3.0 Mixins 详解:从基础到迁移的全面指南
前端·javascript·vue.js
想学后端的前端工程师3 小时前
【React性能优化实战指南:从入门到精通-web技术栈】
前端·react.js·性能优化
白兰地空瓶3 小时前
React Hooks 深度理解:useState / useEffect 如何管理副作用与内存
前端·react.js
cike_y4 小时前
JSP内置对象及作用域&双亲委派机制
java·前端·网络安全·jsp·安全开发