| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | linearapproximation: Move to src/utility | Finlay Davidson | 2023-03-27 | 2 | -2/+1 | |
| | | | ||||||
| * | | pr-comment: Comment instructions instead of failing | Riku Isokoski | 2023-03-27 | 1 | -3/+9 | |
| | | | ||||||
| * | | WeatherService: const DateTimeController reference | Riku Isokoski | 2023-03-19 | 2 | -3/+3 | |
| | | | ||||||
| * | | HeartRateService: Remove SystemTask dependency | Riku Isokoski | 2023-03-19 | 3 | -11/+8 | |
| | | | ||||||
| * | | MotionService: Remove SystemTask dependency | Riku Isokoski | 2023-03-19 | 3 | -12/+9 | |
| | | | ||||||
| * | | NavigationService: Remove unused SystemTask ref | Riku Isokoski | 2023-03-19 | 3 | -11/+2 | |
| | | | ||||||
| * | | WeatherService: Remove unused SystemTask reference | Riku Isokoski | 2023-03-19 | 3 | -10/+3 | |
| | | | ||||||
| * | | MusicService: Remove SystemTask dependency | Riku Isokoski | 2023-03-19 | 3 | -10/+8 | |
| | | | ||||||
| * | | inactivity: Use LVGL inactivity timers | Riku Isokoski | 2023-03-18 | 7 | -76/+52 | |
| |/ | | | | | | | | | | | | | | | | | Replace custom FreeRTOS inactivity timers with LVGL inactivity timers. DisplayApp: Trigger display activity on timer done. inactivity: Add additional checks The backlight could be turned on by RestoreBrightness() on ble connect event. inactivity: Trigger activity on screen switch A notification timing out could put the watch to sleep immediately. While this could be ideal behaviour, it was caused by delay in processing the EnableSleeping event and pushing RestoreBrightness to DisplayApp. | |||||
| * | WatchFaceAnalog: Simplify date update check | Riku Isokoski | 2023-03-15 | 2 | -15/+5 | |
| | | ||||||
| * | raisewake: Change names in line with the style guide | Finlay Davidson | 2023-03-09 | 3 | -9/+9 | |
| | | ||||||
| * | motioncontroller: Fix clang-tidy warnings | Finlay Davidson | 2023-03-09 | 2 | -15/+12 | |
| | | | | | Also move one-line functions to header. | |||||
| * | shakewake: Switch to more generic timekeeping | Finlay Davidson | 2023-03-09 | 2 | -7/+10 | |
| | | | | | Could be used for other motion-based algorithms in the future. | |||||
| * | shakewake: Simplify return code | Finlay Davidson | 2023-03-09 | 1 | -5/+1 | |
| | | ||||||
| * | shakewake: Switch to more generic last* vars | Finlay Davidson | 2023-03-09 | 2 | -11/+16 | |
| | | | | | | These could be used for other motion-based algorithms in the future. Also fix includes. | |||||
| * | shakewake: Fix names according to style guide | Finlay Davidson | 2023-03-09 | 4 | -17/+17 | |
| | | ||||||
| * | PTS: Fix double tap behaviour on settings screen (#1669) | kieranc | 2023-03-04 | 1 | -2/+2 | |
| | | | | | Fixes #1467 "Double tapping PineTimeStyle steps style button sends watch to sleep" Double tap is disabled on the color settings screen by checking if the Rnd button is visible, but this didn't work for the options screen as the Rnd button isn't visible. I've changed it to check if the Close button is visible instead, which is used on both settings screens, and resolves the bug. I also changed the button used to disable the long press behaviour which was an as-yet-undiscovered bug which would have allowed the long press action to be used when the options screen was visible. | |||||
| * | Add low battery indicator to StatusIcons, digital and analog watchfaces | Riku Isokoski | 2023-03-02 | 7 | -1/+21 | |
| | | | | | Define deepOrange color in InfiniTimeTheme | |||||
| * | Revert "added low battery message" | Riku Isokoski | 2023-03-02 | 5 | -31/+1 | |
| | | | | | This reverts PR https://github.com/InfiniTimeOrg/InfiniTime/pull/1352 | |||||
| * | branches: Update files to refer to main instead of develop | Finlay Davidson | 2023-03-02 | 13 | -28/+26 | |
| | | ||||||
| * | README: Remove status badge | Riku Isokoski | 2023-02-27 | 1 | -2/+0 | |
| | | | | | | | | I don't think this badge has shown the actual status of the current workflows for a long time. The real status can easily be seen by clicking on the checkmark or cross icon on the front page. It's also supposed to show the status of the master branch, not develop (default). | |||||
| * | LVGL / FS : Initialize the LVGL FS driver in LittleVgl (instead of FS). | Jean-François Milants | 2023-02-26 | 5 | -67/+62 | |
| | | | | | | | Previously, the LVGL driver for the filesystem was initialized in the class FS. However, since 6f942e2, the order of the initializations was incorrect : the driver was initialized (FS::LVGLFileSystemInit()) before LVGL (LittleVgl.Init()), which means that the driver registration was probably dropped when LVGL was initialized. The LVGL driver is now initialized in LittleVgl.Init(), which seems to make much more sense, since all LVGL drivers are initialized there. This way, we ensure that the initialization of the drivers is consistent. | |||||
| * | infineat: Create colors at compile time. | Riku Isokoski | 2023-02-26 | 2 | -49/+119 | |
| | | | | | lv_color_hex can't be evaluated at compile time, but LV_COLOR_MAKE can. | |||||
| * | warnings: Treat warnings as error | Riku Isokoski | 2023-02-26 | 1 | -1/+1 | |
| | | | | | | This way warnings will be taken seriously, and will cause PR checks to fail when they throw warnings. | |||||
| * | Apps: Remove Weather from app enum | Riku Isokoski | 2023-02-26 | 1 | -1/+0 | |
| | | | | | Weather app is not fully implemented and is causing a warning | |||||
| * | QCBOR: Update to v1.0 | Riku Isokoski | 2023-02-26 | 1 | -0/+0 | |
| | | | | | Fixes a compiler warning | |||||
| * | DateTimeController: Fix integer overflow | Riku Isokoski | 2023-02-26 | 1 | -1/+1 | |
| | | ||||||
| * | motion: Disable Motion app | Riku Isokoski | 2023-02-25 | 4 | -6/+7 | |
| | | | | | | This is a debugging app, not useful for most people. Also remove the app icon. | |||||
| * | screens: Add notes about using C++20 features | Riku Isokoski | 2023-02-25 | 2 | -0/+2 | |
| | | ||||||
| * | date: Remove date lib | Riku Isokoski | 2023-02-25 | 14 | -93/+43 | |
| | | | | | DateTimeController can provide everything we need. | |||||
| * | DateTimeController: Use std::tm for storing date | Riku Isokoski | 2023-02-25 | 2 | -31/+22 | |
| | | ||||||
| * | DateTimeController: Remove SetTime tick parameter | Riku Isokoski | 2023-02-25 | 8 | -24/+9 | |
| | | | | | | | The systick doesn't need to be updated when setting time. Also removed unused nrf_rtc.h includes. | |||||
| * | SystemTask: Move lcd to DisplayApp | Riku Isokoski | 2023-02-25 | 4 | -8/+3 | |
| | | | | | SystemTask should never write to the lcd | |||||
| * | LittleVgl: Instantiate in DisplayApp | Riku Isokoski | 2023-02-25 | 8 | -64/+5 | |
| | | | | | | | | LVGL is only a part of the main DisplayApp. Other "DisplayApps" can be implemented without LVGL. DummyLittleVgl isn't needed anymore and has been removed | |||||
| * | watchdog: Replace WatchdogView with const Watchdog | Riku Isokoski | 2023-02-25 | 8 | -26/+12 | |
| | | ||||||
| * | screens: Remove unused DisplayApp parameters | Riku Isokoski | 2023-02-25 | 72 | -156/+99 | |
| | | ||||||
| * | screens: Remove explicit Screen constructors | Riku Isokoski | 2023-02-25 | 33 | -44/+32 | |
| | | | | | | This constructor didn't do anything since DisplayApp reference was removed from the Screen base class. | |||||
| * | screens: Remove displayapp parameter from screen | Riku Isokoski | 2023-02-25 | 30 | -29/+44 | |
| | | | | | | | | | The DisplayApp class isn't used in the Screen base class and most screens, so requiring it is pointless. In this commit, DisplayApp pointers were added to screens which use it and the explicit Screen constructor was removed in those screens. | |||||
| * | CONTRIBUTING: Fix broken links | Riku Isokoski | 2023-02-25 | 1 | -4/+4 | |
| | | ||||||
| * | SystemTask: Move MotorController to DisplayApp | Riku Isokoski | 2023-02-25 | 9 | -27/+25 | |
| | | | | | | Vibrations should be associated with something happening on the UI. Therefore SystemTask should not be controlling the motor. | |||||
| * | displayapp: Make Ble references const | Riku Isokoski | 2023-02-24 | 30 | -42/+42 | |
| | | ||||||
| * | displayapp: Make Cst816S references const | Riku Isokoski | 2023-02-24 | 6 | -8/+8 | |
| | | ||||||
| * | displayapp: Make Battery class references const | Riku Isokoski | 2023-02-24 | 30 | -41/+41 | |
| | | ||||||
| * | TouchHandler: Do not store touch panel reference | Riku Isokoski | 2023-02-24 | 5 | -22/+17 | |
| | | ||||||
| * | touchhandler: Remove LVGL dependency | Riku Isokoski | 2023-02-24 | 7 | -51/+39 | |
| | | | | | Move LVGL specific code to the LittleVgl class | |||||
| * | libs: Disable clang-format and -tidy | Riku Isokoski | 2023-02-23 | 2 | -0/+2 | |
| | | ||||||
| * | LittleVgl: Remove unused Cst816S reference | Riku Isokoski | 2023-02-23 | 4 | -8/+4 | |
| | | ||||||
| * | TimerController: Use chrono for durations | Riku Isokoski | 2023-02-23 | 3 | -14/+17 | |
| | | ||||||
| * | WatchfaceAnalog: add ble icon (#1430) | Itai Nelken | 2023-02-21 | 2 | -0/+15 | |
| | | ||||||
| * | CONTRIBUTING: Move from doc to root | Riku Isokoski | 2023-02-20 | 2 | -1/+1 | |
| | | | | | This is so the GitHub UI picks it up correctly. | |||||
