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
相关推荐
用泥种荷花12 小时前
【LangChain.js学习】 文档加载(Loader)与文本分割全解析
前端
cxxcode12 小时前
Vite 热更新(HMR)原理详解
前端
HelloReader13 小时前
Tauri 架构从“WebView + Rust”到完整工具链与生态
前端
UIUV13 小时前
node:child_process spawn 模块学习笔记
javascript·后端·node.js
李广坤13 小时前
MySQL 大表字段变更实践(改名 + 改类型 + 改长度)
数据库
Bigger13 小时前
告别版本焦虑:如何为 Hugo 项目定制专属构建环境
前端·架构·go
烛阴14 小时前
Three.js 零基础入门:手把手打造交互式 3D 几何体展示系统
javascript·webgl·three.js
颜酱14 小时前
单调栈:从模板到实战
javascript·后端·算法
代码匠心15 小时前
AI 自动编程:一句话设计高颜值博客
前端·ai·ai编程·claude
_AaronWong16 小时前
Electron 实现仿豆包划词取词功能:从 AI 生成到落地踩坑记
前端·javascript·vue.js