We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are public functions today that take BLEUUIDs ... provide alternatives/over-rides that accept strings.
For example, where we have a function that looks like:
void foo(BLEUUID uuid)
provide an additional signature that looks like:
void foo(char* uuid) { foo(BLEUUID(std::string(uuid))); }
and
void foo(std::string uuid) { foo(BLEUUID(uuid)); }
The text was updated successfully, but these errors were encountered:
Working on it =)
Sorry, something went wrong.
@copercini provided an excellent implementation that has been pushed and merged. I think we can close this issue for the time being.
No branches or pull requests
There are public functions today that take BLEUUIDs ... provide alternatives/over-rides that accept strings.
For example, where we have a function that looks like:
provide an additional signature that looks like:
and
The text was updated successfully, but these errors were encountered: