Conversation
added 2 commits
September 17, 2026 12:09
- Add esp32_devkitc_esp32_procpu overlay and board conf for DRAM tuning - Add SOC_SERIES_ESP32 to BLE security encryption override in Kconfig - Add ESP32 HCI ordering include in CMakeLists.txt (reuses esp32c3 cmake) - Add CONFIG_LINKR_BLE_BRIDGE_PAIRING_GPIO_AUTH Kconfig option to make the GPIO pairing button check optional (default y, boards can set n) - Add ESP32-WROOM-32 documentation in HARDWARE.md (pin mapping, DRAM constraints, build instructions, feature diff vs ESP32-C3) Verified on ESP32-DevKitC: BLE advertising, pairing, WiFi STA, WebSocket bridge all functional.
- Move factory reset GPIO0 to GPIO27 (external jumper to GND) - Default PAIRING_GPIO_AUTH=n for WROOM-32 - Guard GPIO init with IS_ENABLED in ble_security.c - Generalize pairing denial log message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(boards): add ESP32-WROOM-32 (Xtensa) board support
Add ESP32-DevKitC (ESP32-WROOM-32) as an alternative BLE-to-UART bridge target.
Key changes:
CONFIG_LINKR_BLE_BRIDGE_PAIRING_GPIO_AUTHKconfig option (default on, boards can disable)IS_ENABLED()for open-pairing buildsPin mapping: UART2 GPIO16/17 (bridge), UART0 GPIO1/3 (console via CH340), LED GPIO2, pairing GPIO4, factory reset GPIO27
Build:
west build -b esp32_devkitc/esp32/procpu && west flash --runner esp32Tested: BLE advertising, pairing, WiFi STA, WebSocket bridge, LED, credential persistence all verified on ESP32-DevKitC hardware.