| 318 | BLEUUID::BLEUUID(esp_gatt_id_t gattId) : BLEUUID(gattId.uuid) {} // BLEUUID |
| 319 | |
| 320 | esp_bt_uuid_t *BLEUUID::getNative() { |
| 321 | if (m_valueSet == false) { |
| 322 | log_v("<< Return of un-initialized UUID!"); |
| 323 | return nullptr; |
| 324 | } |
| 325 | return &m_uuid; |
| 326 | } // getNative |
| 327 | #endif |
| 328 | |
| 329 | /***************************************************************************** |
no outgoing calls
no test coverage detected