* @brief Convert an esp_gatt_srvc_id_t to a string. */
| 1797 | * @brief Convert an esp_gatt_srvc_id_t to a string. |
| 1798 | */ |
| 1799 | String BLEUtils::gattServiceIdToString(esp_gatt_srvc_id_t srvcId) { |
| 1800 | return gattIdToString(srvcId.id); |
| 1801 | } // gattServiceIdToString |
| 1802 | |
| 1803 | String BLEUtils::gattServiceToString(uint32_t serviceId) { |
| 1804 | gattService_t *p = (gattService_t *)g_gattServices; |
nothing calls this directly
no test coverage detected