2023-03-06 23:21:29 -05:00
|
|
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-H4 | ESP32-S3 |
|
|
|
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
|
2020-04-09 04:40:57 -04:00
|
|
|
|
2021-10-21 13:28:36 -04:00
|
|
|
## ESP-IDF GATT SERVER SPP Example
|
2017-07-21 04:51:48 -04:00
|
|
|
|
2021-10-21 13:28:36 -04:00
|
|
|
For description of this application please refer to [ESP-IDF GATT CLIENT SPP Example](../ble_spp_client/README.md)
|
|
|
|
|
|
|
|
## How to Use Example
|
|
|
|
|
|
|
|
Before project configuration and build, be sure to set the correct chip target using:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
idf.py set-target <chip_name>
|
|
|
|
```
|
|
|
|
|
|
|
|
### Hardware Required
|
|
|
|
|
2022-10-19 03:57:24 -04:00
|
|
|
* A development board with ESP32/ESP32-C3/ESP32-S3/ESP32-C2/ESP32-H4 SoC (e.g., ESP32-DevKitC, ESP-WROVER-KIT, etc.)
|
2021-10-21 13:28:36 -04:00
|
|
|
* A USB cable for Power supply and programming
|
|
|
|
|
|
|
|
See [Development Boards](https://www.espressif.com/en/products/devkits) for more information about it.
|
|
|
|
|
|
|
|
### Build and Flash
|
|
|
|
|
|
|
|
Run `idf.py -p PORT flash monitor` to build, flash and monitor the project.
|
|
|
|
|
|
|
|
(To exit the serial monitor, type ``Ctrl-]``.)
|
|
|
|
|
|
|
|
See the [Getting Started Guide](https://idf.espressif.com/) for full steps to configure and use ESP-IDF to build projects.
|
|
|
|
|
|
|
|
## Example Output
|
|
|
|
|
|
|
|
```
|
|
|
|
I (4452) GATTS_SPP_DEMO: EVT 14, gatts if 3
|
|
|
|
I (4452) GATTS_SPP_DEMO: event = e
|
|
|
|
I (5022) GATTS_SPP_DEMO: EVT 4, gatts if 3
|
|
|
|
I (5022) GATTS_SPP_DEMO: event = 4
|
|
|
|
I (5152) GATTS_SPP_DEMO: EVT 2, gatts if 3
|
|
|
|
I (5152) GATTS_SPP_DEMO: event = 2
|
|
|
|
I (5152) GATTS_SPP_DEMO: ESP_GATTS_WRITE_EVT : handle = 5
|
|
|
|
I (5242) GATTS_SPP_DEMO: EVT 2, gatts if 3
|
|
|
|
I (5242) GATTS_SPP_DEMO: event = 2
|
|
|
|
I (5242) GATTS_SPP_DEMO: ESP_GATTS_WRITE_EVT : handle = 10
|
|
|
|
I (18462) GATTS_SPP_DEMO: EVT 5, gatts if 3
|
|
|
|
I (18462) GATTS_SPP_DEMO: event = 5
|
|
|
|
I (27652) GATTS_SPP_DEMO: EVT 2, gatts if 3
|
|
|
|
I (27652) GATTS_SPP_DEMO: event = 2
|
|
|
|
I (27652) GATTS_SPP_DEMO: ESP_GATTS_WRITE_EVT : handle = 2
|
|
|
|
```
|
|
|
|
|
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
For any technical queries, please open an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon.
|