summaryrefslogtreecommitdiff
path: root/src/components/ble/NavigationService.cpp
AgeCommit message (Collapse)AuthorFilesLines
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher1-1/+1
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-10-09Merge pull request #522 from jonvmey/fix-nav-uuid-docsJF1-24/+21
Fix Navigation Service UUID docs
2021-07-24Move callback function into anonymous namespaceJonathan Vander Mey1-5/+5
2021-07-24Remove unnecessary C-style casts with BLE UUIDsJonathan Vander Mey1-19/+13
Instead of casting the UUID object to the ble_uuid_t* used throughout the NimBLE API just pass the address of the ble_uuid_t member that's at the start of each of the UUID structs.
2021-07-24Update nav service UUID macro to constexpr functionsJonathan Vander Mey1-12/+20
2021-07-24Set navigation service id is base UUID macroJonathan Vander Mey1-11/+0
Avoids the need to copy the same ID into every characteristic UUID genereated from it.
2021-04-24Reformatted all the files according to clang-format styleAvamander1-49/+33
2021-04-04Add support for notification title. The notification buffer must contain the ↵Jean-François Milants1-1/+0
title and the message separated by a '\0' character. If the buffer does not contain any \0, the whole buffer is considered to be the message of the notification. A default title will be displayed in the notification app.
2021-01-20Merge branch piggz/nav into develop:Jean-François Milants1-0/+137
- fix conflict - add a icon for the navigation app.