aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/motion/MotionController.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update clang-{format,tidy} to 14Finlay Davidson2023-01-041-0/+3
| | | | | Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
* Update clang-tidy configuration and fix some warnings (#1474)Riku Isokoski2022-12-181-3/+2
| | | | | Don't enable coding conventions from unrelated projects. Only enable generic checks.
* Fix crash upon leaving app.Tim Keller2022-01-041-7/+8
| | | | Code formatting
* Better Sensitivity UI, Calibration button addedTim Keller2022-01-041-5/+8
|
* Add averaging to wake threshold. Makes it take more then just a "flick" to ↵Tim Keller2022-01-041-1/+4
| | | | turn on
* Add start of settings app for senstivity.Tim Keller2022-01-041-2/+2
| | | | | really just debugging. I want to make it more configurable then high med low. Position of setting needs a new location...dynamicly adding it currently at the end. Which honestly im fine with.
* Added Shake to wakeTim Keller2022-01-041-2/+18
|
* Ran clang-formatStephanie2021-12-301-5/+11
|
* Renamed confusing variables and general cleanupStephanie2021-12-301-1/+1
|
* Moved trip meter update to MotionController and changed trip meter logicStephanie2021-12-301-0/+4
|
* 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.
* Add MotionService : expose step count and RAW X/Y/Z values to the host.Jean-François Milants2021-10-171-0/+11
|
* Add support for BMA425 acceleration sensor. (#440)JF0022021-06-191-0/+7
| | | * Add support for BMA425 acceleration sensor.
* Handle return code from BMA driver, and set a flag is the initialization ↵Jean-François Milants2021-04-041-0/+3
| | | | fails. This allows to boot InfiniTime even if the device cannot initialize.
* First integration of the motion sensor (bma 421) : step counting + wake on ↵Jean-François Milants2021-04-041-0/+33
wrist rotation + app to see the value of the 3 axis in "real time".