From 6b360dacf68e1dd95bb2670fb41e48c4545c4040 Mon Sep 17 00:00:00 2001 From: Cody Date: Sun, 9 Mar 2025 04:19:05 -0700 Subject: [PATCH] fix(ble/bluedroid): Update Gatt_Server_Service_Table_Example_Walkthrough.md --- .../tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/bluetooth/bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md b/examples/bluetooth/bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md index 636d2bb62e..ea255f2d5d 100644 --- a/examples/bluetooth/bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md +++ b/examples/bluetooth/bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md @@ -26,7 +26,6 @@ Let’s start by taking a look at the included headers in the [gatts_table_creat #include "esp_gatts_api.h" #include "esp_bt_defs.h" #include "esp_bt_main.h" -#include "esp_bt_main.h" #include “gatts_table_creat_demo.h" ``` These includes are required for the *FreeRTOS* and underlying system components to run, including logging functionality and a library to store data in non-volatile flash memory. We are interested in ``bt.h``, ``esp_bt_main.h``, ``esp_gap_ble_api.h`` and ``esp_gatts_api.h`` which expose the BLE APIs required to implement this example.