8000 multiple services with the same uuid, first try by chegewara · Pull Request #536 · nkolban/esp32-snippets · GitHub
[go: up one dir, main page]

Skip to content

multiple services with the same uuid, first try #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 26, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
multiple services with the same uuid
  • Loading branch information
chegewara committed May 26, 2018
commit b059dad94f861620dc6a7cda1bb1f9ed331a61e6
2 changes: 1 addition & 1 deletion cpp_utils/BLEServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ class BLEServer {
BLEAdvertising* getAdvertising();
void setCallbacks(BLEServerCallbacks* pCallbacks);
void startAdvertising();
uint16_t getGattsIf();


private:
Expand All @@ -82,6 +81,7 @@ class BLEServer {

void createApp(uint16_t appId);
uint16_t getConnId();
uint16_t getGattsIf();
void handleGAPEvent(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param);
void handleGATTServerEvent(esp_gatts_cb_event_t event, esp_gatt_if_t gatts_if, esp_ble_gatts_cb_param_t *param);
void registerApp();
Expand Down
0