Skip to content

Commit

Permalink
Update libraries/BLE/src/BLERemoteService.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
SuGlider authored Jun 17, 2024
1 parent 20df9d5 commit 99c377d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/BLE/src/BLERemoteService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void BLERemoteService::gattClientEventHandler(esp_gattc_cb_event_t event, esp_ga
// This is an indication that we now have the characteristic details for a characteristic owned
// by this service so remember it.
m_characteristicMap.insert(std::pair<std::String, BLERemoteCharacteristic*>(
m_characteristicMap.insert(std::pair<std::string, BLERemoteCharacteristic*>(
BLEUUID(evtParam->get_char.char_id.uuid).toString().c_str(),
new BLERemoteCharacteristic(evtParam->get_char.char_id, evtParam->get_char.char_prop, this) ));
Expand Down

0 comments on commit 99c377d

Please sign in to comment.