baohongde b310c062cd components/bt: move config BT_RESERVE_DRAM from bluedroid to ESP32 controller vor 4 Jahren
..
main 3fa1f5d4d6 Renamed Kconfig to Kconfig.projbuild in some examples. vor 4 Jahren
CMakeLists.txt 5b2fa1a5ad build_app: make multi target support readable vor 5 Jahren
Makefile cba69dd088 Bluetooth examples restructuring vor 6 Jahren
README.md 7c1c669799 component/bt: add BLE v5.0 feature for bluedroid host vor 5 Jahren
sdkconfig.defaults 7c1c669799 component/bt: add BLE v5.0 feature for bluedroid host vor 5 Jahren
sdkconfig.defaults.esp32 b310c062cd components/bt: move config BT_RESERVE_DRAM from bluedroid to ESP32 controller vor 4 Jahren
sdkconfig.defaults.esp32c3 b310c062cd components/bt: move config BT_RESERVE_DRAM from bluedroid to ESP32 controller vor 4 Jahren
sdkconfig.defaults.esp32s3 b310c062cd components/bt: move config BT_RESERVE_DRAM from bluedroid to ESP32 controller vor 4 Jahren

README.md

Supported Targets ESP32 ESP32-C3

ESP-IDF BLE throughput GATT CLIENT demo

This is the demo used to test the BLE throughput, this demo should used with throughput server demo together. The throughput of BLE can up to 720-767 Kbps between to ESP32 board. Note:

  1. In order to maximize throughput, we need to set the uart print baud rate at 921600 or more (idf.py menuconfig --> Component config --> ESP32-specific --> UART console baud rate --> 921600(or 1500000)) and don't print too much log.
  2. We can only test notify or write throughput at the same time, this demo default to test the notify throughput, if want to test the write throughput, please set: idf.py menuconfig --> Component config --> Example 'GATT CLIENT THROUGHPUT' Config ---> then select the 'test the gattc write throughput' option
  3. This demo only test unidirectional throughput, if you want to test the bidirectional throughput please change the demo by yourself.
  4. Should change the CPU frequency to 160MHZ or 240MHz in the idf.py menuconfig --> Component config ---> ESP32-specific ---> CPU frequency (240 MHz or 160 MHz).
  5. Should change the bluetooth controller and Bluedroid run in different Core in the idf.py menuconfig --> Component config ---> Bluetooth ---> The cpu core which bluetooth controller run (Core 0 (PRO CPU)) & Bluedroid Enable ---> The cpu core which Bluedroid run (Core 1 (APP CPU)).
  6. In order to maximize throughput, please test in a clean environment without many BLE devices working and both test devices are ESP32.