Update Gatt_Server_Service_Table_Example_Walkthrough.md

Fix typo (unicode quote to ascii)
pull/10691/head
Kevin Evans 2023-02-03 12:40:07 -08:00 zatwierdzone przez GitHub
rodzic 732df630cd
commit e831d38b8a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -27,7 +27,7 @@ Lets start by taking a look at the included headers in the [gatts_table_creat
#include "esp_bt_defs.h"
#include "esp_bt_main.h"
#include "esp_bt_main.h"
#include gatts_table_creat_demo.h"
#include "gatts_table_creat_demo.h"
```
These includes are required for the *FreeRTOS* and underlaying 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.