summaryrefslogtreecommitdiff
path: root/src/components/ble/MotionService.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-01-24src: Enable unused parameter warningRiku Isokoski1-6/+6
Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed.
2023-01-04Update clang-{format,tidy} to 14Finlay Davidson1-0/+1
Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
2022-06-05Apply clang-format to all C++ filesFinlay Davidson1-18/+14
2022-03-08Add missing nrf_log.h includes shadowed by SystemMonitor.hReinhold Gschweicher1-0/+1
Some components were missing a `nrf_log.h` include. This missing include was accidentally provided by the SystemMonitor.h header, which was included by Systemtask.h
2021-11-28Merge branch 'develop' into motionservice_fix_typo_in_includeJF1-3/+3
2021-11-28Merge branch 'restructure_includes' of ↵Jean-François Milants1-1/+1
https://github.com/NeroBurner/InfiniTime into NeroBurner-restructure_includes # Conflicts: # doc/contribute.md # src/displayapp/screens/BatteryInfo.h
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-11-15fix Motion Service UUID in doc and code commentsmabuch1-2/+2
2021-10-30MotionService: fix not needed '/' in includeReinhold Gschweicher1-1/+1
2021-10-26Motion service : fix step notifications that were sent as a single byte ↵Jean-François Milants1-1/+1
instead of 4 (uint32_t).
2021-10-20Add mention to Call characteristic (which was missing in the doc) and change ↵Jean-François Milants1-1/+1
the UUID of the new Motion service from 00020000-* to 00030000-*.
2021-10-17Add MotionService : expose step count and RAW X/Y/Z values to the host.Jean-François Milants1-0/+124