aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Break not return thanks @FintasticManTim Keller2021-12-091-1/+1
|
* Adjust systemtask to respect doNotGoToSleep.Tim Keller2021-12-091-1/+4
|
* Adjust BLE/LL stacks, style, comments, refactoringJames A. Jerkins2021-12-094-18/+31
| | | | | Increase BLE task stack +200 and decrease LL task stack -200 more braces!
* Persist bond between rebootsJames A. Jerkins2021-12-093-10/+117
| | | | | | | | | Save bond information in the FS after a disconnect or encryption change if the bond is not already stored. The bond is restored on boot enabling automatic reconnection to a previously bonded central. Two consecutive watch reboots with the central out of range (or BLE off) will remove the stored bond from the watch.
* Fix for passkey screen scrambleJames A. Jerkins2021-12-093-9/+17
| | | | | | When a passkey is displayed, screen on or off, and another passkey is displayed the screen may become scrambled. Fix the issue by insuring the whole screen is drawn every time.
* Connect and bond with a passkeyJames A. Jerkins2021-12-0913-41/+154
| | | | | | | | | | | | | | This commit adds the following: Passkey pairing - passkey is displayed on watch Swipe down to clear passkey screen Connection encryption Connection bonding Automatic reconnects to a bonded peripheral Trusted device on Android Note that persisting the bond between reboots is NOT included in this commit. Therefore, rebooting the watch will cause reconnect failures. You must delete the bond from the phone to reconnect/pair.
* Clock: add missing Settings includeReinhold Gschweicher2021-12-021-0/+1
| | | | | | Add missing include in `Clock.cpp` for `Settings.h`. The Settings class is forward declared in the header file, but it needs to be included in the cpp file.
* WatchFaceAnalog : move notification iconSteveis2021-12-021-1/+1
| | | Standardise notification icon to display in top left.
* Paddle: add a little randomization in the dy speedReinhold Gschweicher2021-12-021-0/+9
| | | | | | | | | To make the game a bit more challenging an less predictable add a little bit of randomness to the `dy` value. When hitting the right wall add a random number (one of [-1, 0, 1]) to the `dy` value. To keep the difficulty level managable limit the dy value to be in the range from -5 to 5.
* Merge branch 'paint-colorchange-vibration' of ↵Jean-François Milants2021-12-023-4/+10
|\ | | | | | | | | | | | | git://github.com/clemensvonmolo/InfiniTime into clemensvonmolo-paint-colorchange-vibration # Conflicts: # src/displayapp/screens/InfiniPaint.h
| * change paint vibration to 35msClemens von Molo2021-11-011-1/+1
| |
| * color rotation using modulo, ran clang-format for InfiniPaintClemens von Molo2021-11-013-7/+12
| |
| * InfiniPaint vibrate on colorchange, fix color rotationClemens von Molo2021-10-313-7/+8
| |
* | Metronome: add missing include for Screen.hReinhold Gschweicher2021-12-021-0/+1
| |
* | Settings: remove unused driver includeReinhold Gschweicher2021-12-021-1/+0
| |
* | WatchFaceDigital: remove unused include for ScreenList.hReinhold Gschweicher2021-12-021-1/+0
| |
* | WatchFaceDigital: add missing include to Settings.hReinhold Gschweicher2021-12-021-0/+1
| |
* | WatchFaceAnalog: remove unused ScreenList, add needed includesReinhold Gschweicher2021-12-022-1/+2
| | | | | | | | | | | | | | | | | | Remove unused `ScreenList.h` include. For `std::abs()` add needed include `<cmath>`. For the forward declared Settings-Controller add the `Settings.h` include to the cpp file.
* | PineTimeStyle: remove include and add forward declareReinhold Gschweicher2021-12-021-1/+1
| | | | | | | | | | Remove unused `ScreenList.h` include and add a forward declaration for the `MotionController` class.
* | QuickSettings: remove unused importsReinhold Gschweicher2021-12-021-2/+0
| |
* | About : Remove misleading infoSteveis2021-11-281-5/+2
| | | | | | | | Removed Steps which is hard coded to display 0. Could be misleading and is using up memory.
* | Merge branch 'develop' into motionservice_fix_typo_in_includeJF2021-11-28153-330/+564
|\ \
| * \ Merge branch 'restructure_includes' of ↵Jean-François Milants2021-11-28147-252/+262
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/NeroBurner/InfiniTime into NeroBurner-restructure_includes # Conflicts: # doc/contribute.md # src/displayapp/screens/BatteryInfo.h
| | * | Move up file header include to topReinhold Gschweicher2021-11-159-9/+9
| | | |
| | * | remove unused libs/ prefix from lvgl includes as not neededReinhold Gschweicher2021-11-155-9/+9
| | | |
| | * | Add missing standard includesReinhold Gschweicher2021-11-157-0/+10
| | | |
| | * | Update includes to to be relative to src directoryReinhold Gschweicher2021-11-15140-243/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | Merge pull request #820 from Riksu9000/fix-anim-dirJF2021-11-281-1/+7
| |\ \ \ | | | | | | | | | | Fix animation when long pressing on screens adjacent to watch face
| | * | | Fix animation when long pressing on screens adjacent to watch faceRiku Isokoski2021-11-101-1/+7
| | | | |
| * | | | Merge pull request #832 from mabuch/fix-doc-motionservice-uuidJF2021-11-281-2/+2
| |\ \ \ \ | | | | | | | | | | | | fix Motion Service UUID in doc and code comments
| | * | | | fix Motion Service UUID in doc and code commentsmabuch2021-11-151-2/+2
| | | | | |
| * | | | | BatteryInfo: remove unused FreeRTOS.h and timer.h includesReinhold Gschweicher2021-11-151-2/+0
| | |_|/ / | |/| | |
| * | | | Fix unresponsive touch panel after update to 1.7 : don't care if device ids ↵Jean-François Milants2021-11-141-11/+5
| |/ / / | | | | | | | | | | | | are not the ones we expected (until we know more about these communication and IDs issues).
| * / / Fix Alarm app crashing on buttonpressRiku Isokoski2021-11-091-1/+3
| |/ /
| * | Merge pull request #811 from InfiniTimeOrg/cst816-add-validity-checkJF2021-11-082-22/+58
| |\ \ | | | | | | | | Add data validity check and retries in CST816S driver
| | * | Fix formatting following the code review.Jean-François Milants2021-11-071-3/+3
| | | |
| | * | Add data validity check and retries in CST816S driver. See ↵Jean-François Milants2021-11-062-22/+58
| | | | | | | | | | | | | | | | https://github.com/InfiniTimeOrg/InfiniTime/issues/763#issuecomment-962436976.
| * | | Fix previous commit, call touchPanel.Init() even if we disabled the touch ↵Jean-François Milants2021-11-071-0/+1
| | | | | | | | | | | | | | | | controller boot error.
| * | | Disable the warning that is displayed when the initialization of the touch ↵Jean-François Milants2021-11-071-0/+5
| |/ / | | | | | | | | | controller fails, as some users reported that it was displayed when a valid touch controller was installed.
| * | Merge pull request #782 from Riksu9000/newer_buttonhandlerJF2021-11-0610-33/+211
| |\ \ | | | | | | | | Newer ButtonHandler
| | * | Make it so special actions can be input while sleeping, like in #480Riku Isokoski2021-10-252-4/+10
| | | |
| | * | Only wake up on press. Fixes issue with longer press and sleepRiku Isokoski2021-10-251-5/+4
| | | |
| | * | Return button action instead of pushing messagesRiku Isokoski2021-10-256-50/+66
| | | |
| | * | Use enum classes, remove old commentRiku Isokoski2021-10-254-31/+30
| | | |
| | * | Newer buttonhandlerRiku Isokoski2021-10-259-36/+194
| | | |
| * | | Merge pull request #792 from Riksu9000/memory_savingJF2021-11-062-17/+21
| |\ \ \ | | |_|/ | |/| | Memory savings by replacing strings
| | * | Memory savings by replacing stringsRiku Isokoski2021-10-292-17/+21
| | | |
| * | | Merge pull request #791 from evergreen22/recovery-bootJF2021-10-311-1/+1
| |\ \ \ | | |/ / | |/| | Fix recovery firmware build
| | * | Fix recovery firmware buildJames A. Jerkins2021-10-281-1/+1
| | | |
* | | | MotionService: fix not needed '/' in includeReinhold Gschweicher2021-10-301-1/+1
|/ / /