You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A device or higher level specification may have multiple service definitions and may have multiple service definitions with the same service UUID.
However, this is not supported by this library, at least not for the implementations of Device.DiscoverServices found in gattc_linux.go, gattc_darwin.go, and gattc_hci.go. Each of these implementations store the services in a map keyed by UUID, which prevents multiple definitions with the same UUID.
It looks like the implementation in gattc_windows.go might work in this case, though I haven't tested it.
The text was updated successfully, but these errors were encountered:
Per the GATT reference, part G, section 3.1:
However, this is not supported by this library, at least not for the implementations of
Device.DiscoverServices
found ingattc_linux.go
,gattc_darwin.go
, andgattc_hci.go
. Each of these implementations store the services in a map keyed by UUID, which prevents multiple definitions with the same UUID.It looks like the implementation in
gattc_windows.go
might work in this case, though I haven't tested it.The text was updated successfully, but these errors were encountered: