aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ble/MotionService.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Step counter historyHunman2025-11-081-2/+2
| | | Store 2 days steps history and display yesterday's steps on the Steps screen
* Fix typos/formattingmark90642025-10-161-11/+16
|
* Remove unused motion subscribed methodmark90642025-10-161-4/+0
|
* Only inhibit sleep if motion notifications are enabled, not just Bluetoothapilat2024-01-231-0/+4
|
* MotionService: Remove SystemTask dependencyRiku Isokoski2023-03-191-5/+5
|
* src: Enable unused parameter warningRiku Isokoski2023-01-241-6/+6
| | | | | | Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed.
* Update clang-{format,tidy} to 14Finlay Davidson2023-01-041-0/+1
| | | | | Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-18/+14
|
* Add missing nrf_log.h includes shadowed by SystemMonitor.hReinhold Gschweicher2022-03-081-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
* Merge branch 'develop' into motionservice_fix_typo_in_includeJF2021-11-281-3/+3
|\
| * Merge branch 'restructure_includes' of ↵Jean-François Milants2021-11-281-1/+1
| |\ | | | | | | | | | | | | | | | | | | | | | https://github.com/NeroBurner/InfiniTime into NeroBurner-restructure_includes # Conflicts: # doc/contribute.md # src/displayapp/screens/BatteryInfo.h
| | * Update includes to to be relative to src directoryReinhold Gschweicher2021-11-151-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.
| * | fix Motion Service UUID in doc and code commentsmabuch2021-11-151-2/+2
| |/
* / MotionService: fix not needed '/' in includeReinhold Gschweicher2021-10-301-1/+1
|/
* Motion service : fix step notifications that were sent as a single byte ↵Jean-François Milants2021-10-261-1/+1
| | | | instead of 4 (uint32_t).
* Add mention to Call characteristic (which was missing in the doc) and change ↵Jean-François Milants2021-10-201-1/+1
| | | | the UUID of the new Motion service from 00020000-* to 00030000-*.
* Add MotionService : expose step count and RAW X/Y/Z values to the host.Jean-François Milants2021-10-171-0/+124