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
相关推荐
我真会写代码几秒前
从底层到实战:MySQL核心原理拆解,解锁数据库高性能密码
数据库·mysql
LF3_7 分钟前
监听数据库binlog日志变化,将变动实时发送到kafka
数据库·分布式·mysql·kafka·binlog·debezium
optimistic_chen7 分钟前
【Vue3入门】vue-router 路由管理
前端·javascript·vue.js·路由·router
我真会写代码9 分钟前
从入门到精通:Redis实战指南,解锁高性能缓存核心能力
数据库·redis·缓存
杰杰79815 分钟前
一文掌握Django模型——认识模型
数据库·python·django
add45a16 分钟前
Django全栈开发入门:构建一个博客系统
jvm·数据库·python
江不清丶18 分钟前
事务隔离级别深度解析:从理论到MySQL实现
数据库·mysql
骇客野人19 分钟前
向量数据库Milvus的安装使用
数据库·milvus
柯儿的天空23 分钟前
WebGPU全面解析:新一代Web图形与计算API
前端·chrome·microsoft·前端框架·chrome devtools·view design