1. BLE / RTC 默认配置 - 开启 CONFIG_BT_ALLOCATION_FROM_SPIRAM_FIRST,让 Bluedroid host 动态分配优先走 PSRAM - 关闭 CONFIG_BT_BLE_50_FEATURES_SUPPORTED,数字人 RTC 与 BLE 配网继续使用 legacy advertising - 增加 CONFIG_LWIP_MAX_SOCKETS=20,给火山 RTC ICE/socket 建连预留 fd - 保持 BluFi 关闭,项目继续使用自定义 GATT 配网服务 2. ESP32-S3 PSRAM defaults - 开启 CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY - 开启 CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY - 将 BT/WiFi/LWIP 的静态段迁移到 PSRAM,释放内部 SRAM 给 BLE controller 和 RTC 3. 实机测试记录 - 更新 05-最新日志.txt,记录配网模式启动、BLE controller feature、EAF/音频初始化和复位现象 - 保留串口原始日志格式,便于后续对比 BLE 配网行为 4. 本地开发配置 - 更新 VSCode ESP-IDF 串口为 /dev/tty.usbmodem834401,匹配当前测试设备
118 lines
2.7 KiB
JSON
118 lines
2.7 KiB
JSON
{
|
|
"idf.openOcdConfigs": [
|
|
"board/esp32s3-bridge.cfg"
|
|
],
|
|
"idf.customExtraVars": {
|
|
"IDF_TARGET": "esp32s3"
|
|
},
|
|
"idf.flashType": "UART",
|
|
"idf.portWin": "COM9",
|
|
"files.associations": {
|
|
"algorithm": "cpp",
|
|
"atomic": "cpp",
|
|
"bit": "cpp",
|
|
"cctype": "cpp",
|
|
"charconv": "cpp",
|
|
"chrono": "cpp",
|
|
"clocale": "cpp",
|
|
"cmath": "cpp",
|
|
"compare": "cpp",
|
|
"concepts": "cpp",
|
|
"condition_variable": "cpp",
|
|
"cstddef": "cpp",
|
|
"cstdint": "cpp",
|
|
"cstdio": "cpp",
|
|
"cstdlib": "cpp",
|
|
"cstring": "cpp",
|
|
"ctime": "cpp",
|
|
"cwchar": "cpp",
|
|
"exception": "cpp",
|
|
"format": "cpp",
|
|
"forward_list": "cpp",
|
|
"fstream": "cpp",
|
|
"functional": "cpp",
|
|
"initializer_list": "cpp",
|
|
"iomanip": "cpp",
|
|
"ios": "cpp",
|
|
"iosfwd": "cpp",
|
|
"iostream": "cpp",
|
|
"istream": "cpp",
|
|
"iterator": "cpp",
|
|
"limits": "cpp",
|
|
"list": "cpp",
|
|
"locale": "cpp",
|
|
"map": "cpp",
|
|
"memory": "cpp",
|
|
"mutex": "cpp",
|
|
"new": "cpp",
|
|
"optional": "cpp",
|
|
"ostream": "cpp",
|
|
"ratio": "cpp",
|
|
"regex": "cpp",
|
|
"sstream": "cpp",
|
|
"stdexcept": "cpp",
|
|
"stop_token": "cpp",
|
|
"streambuf": "cpp",
|
|
"string": "cpp",
|
|
"system_error": "cpp",
|
|
"thread": "cpp",
|
|
"tuple": "cpp",
|
|
"type_traits": "cpp",
|
|
"typeinfo": "cpp",
|
|
"unordered_map": "cpp",
|
|
"utility": "cpp",
|
|
"vector": "cpp",
|
|
"xfacet": "cpp",
|
|
"xhash": "cpp",
|
|
"xiosbase": "cpp",
|
|
"xlocale": "cpp",
|
|
"xlocbuf": "cpp",
|
|
"xlocinfo": "cpp",
|
|
"xlocmes": "cpp",
|
|
"xlocmon": "cpp",
|
|
"xlocnum": "cpp",
|
|
"xloctime": "cpp",
|
|
"xmemory": "cpp",
|
|
"xstddef": "cpp",
|
|
"xstring": "cpp",
|
|
"xtr1common": "cpp",
|
|
"xtree": "cpp",
|
|
"xutility": "cpp",
|
|
"__bit_reference": "cpp",
|
|
"__hash_table": "cpp",
|
|
"__locale": "cpp",
|
|
"__node_handle": "cpp",
|
|
"__split_buffer": "cpp",
|
|
"__tree": "cpp",
|
|
"__verbose_abort": "cpp",
|
|
"array": "cpp",
|
|
"bitset": "cpp",
|
|
"cstdarg": "cpp",
|
|
"cwctype": "cpp",
|
|
"deque": "cpp",
|
|
"execution": "cpp",
|
|
"print": "cpp",
|
|
"queue": "cpp",
|
|
"stack": "cpp",
|
|
"string_view": "cpp",
|
|
"variant": "cpp",
|
|
"complex": "cpp",
|
|
"sdkconfig.h": "c",
|
|
"unordered_set": "cpp",
|
|
"cinttypes": "cpp",
|
|
"span": "cpp",
|
|
"osmemory": "cpp",
|
|
"osutility": "cpp",
|
|
"__config": "cpp",
|
|
"volc_device_manager.h": "c",
|
|
"version": "cpp",
|
|
"random": "cpp",
|
|
"*.obj": "cpp"
|
|
},
|
|
"idf.port": "/dev/tty.usbmodem834401",
|
|
"idf.espIdfPath": "/Users/rdzleo/esp/esp-idf/v5.4.2/esp-idf",
|
|
"idf.toolsPath": "/Users/rdzleo/.espressif",
|
|
"idf.pythonInstallPath": "/opt/homebrew/bin/python3",
|
|
"idf.currentSetup": "/Users/rdzleo/esp/esp-idf/v5.4.2/esp-idf"
|
|
}
|