feat(ble): Add function to set pins when using hosted BLE#12023
feat(ble): Add function to set pins when using hosted BLE#12023me-no-dev merged 1 commit intoespressif:masterfrom
Conversation
👋 Hello lucasssvaz, we appreciate your contribution to this project! 📘 Please review the project's Contributions Guide for key guidelines on code, documentation, testing, and more. 🖊️ Please also make sure you have read and signed the Contributor License Agreement for this project. Click to see more instructions ...
Review and merge process you can expect ...
|
Test Results 76 files 76 suites 16m 53s ⏱️ Results for commit 6c6dbf9. ♻️ This comment has been updated with latest results. |
Memory usage test (comparing PR against master branch)The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description of Change
This pull request introduces support for configuring SDIO pins for external ESP MCU connections when using ESP-Hosted with NimBLE. The main changes add a new method to the
BLEDeviceclass, allowing users to set the required pins for this setup.ESP-Hosted NimBLE integration:
setPinsstatic method to theBLEDeviceclass inBLEDevice.h, enabling configuration of SDIO pins for communication with an external ESP MCU when ESP-Hosted with NimBLE is enabled.setPinsmethod inBLEDevice.cpp, which callshostedSetPinsto apply the pin configuration. This method is conditionally compiled whenCONFIG_ESP_HOSTED_ENABLE_BT_NIMBLEis set.