| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 |
| | | |||||
| * | date: Remove date lib | Riku Isokoski | 2023-02-25 | 1 | -0/+1 |
| | | | | | DateTimeController can provide everything we need. | ||||
| * | DateTimeController: Remove SetTime tick parameter | Riku Isokoski | 2023-02-25 | 3 | -7/+2 |
| | | | | | | | The systick doesn't need to be updated when setting time. Also removed unused nrf_rtc.h includes. | ||||
| * | src: Enable unused parameter warning | Riku Isokoski | 2023-01-24 | 24 | -72/+70 |
| | | | | | | | Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed. | ||||
| * | Format header files | Finlay Davidson | 2023-01-09 | 14 | -0/+38 |
| | | | | | In my PR updating clang-format, I forgot to also format the headers. | ||||
| * | Update clang-{format,tidy} to 14 | Finlay Davidson | 2023-01-04 | 2 | -0/+2 |
| | | | | | | 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 Isokoski | 2022-12-18 | 1 | -1/+1 |
| | | | | | | Don't enable coding conventions from unrelated projects. Only enable generic checks. | ||||
| * | BLE CTS: fixed signedness of timezone | uli | 2022-11-25 | 1 | -2/+2 |
| | | |||||
| * | WeatherService daily min/max temperature fixes (#1455) | kieranc | 2022-11-25 | 1 | -6/+8 |
| | | | | | * Min/Max function fixes * Faster way to calculate day start | ||||
| * | add CTS local time characteristic and use it to provide UTC in ↵ | uli | 2022-11-11 | 4 | -53/+99 |
| | | | | | DateTimeController | ||||
| * | Edit all occurences of "watchface" to "watch face" | mashuptwice | 2022-10-10 | 1 | -3/+3 |
| | | |||||
| * | Dismiss notifications by swiping right | Simon Willshire | 2022-06-28 | 2 | -61/+115 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new interface `NotificationManager::Dismiss(id)` to delete a notification with the specified `id`. The animate the notification dismiss the `RightAnim` transition to a black screen is used. After the dismiss the new message is swiped in from below or above. If we dismiss the oldest message (when we are at 5/5, or 3/3), then the new message after a dismiss should appear to come from below. Otherwise (when we are at 2/3) the new message after a dismiss should appear to come from above. Rework the index code to show the index of the currently viewed notification. Instead of calculating the index relative to the oldest `id` introduce a new interface `NotificationManager::IndexOf(id)`. This is done because the `id` of the notifications in the buffer aren't continuous anymore (as some messages could have been dismissed). Rework notification ring buffer to have a beginIdx and a size internally to make the dismissal of notifications easier. Fixes: https://github.com/InfiniTimeOrg/InfiniTime/issues/176 Co-authored-by: Simon Willshire <me@simonwillshire.com> Co-authored-by: Reinhold Gschweicher <pyro4hell@gmail.com> | ||||
| * | Fix various typos | luz paz | 2022-06-05 | 2 | -7/+7 |
| | | | | | Found via `codespell -q 3 -S ./src/libs -L ans,doubleclick,trough` | ||||
| * | Apply clang-format to all C++ files | Finlay Davidson | 2022-06-05 | 10 | -52/+83 |
| | | |||||
| * | Replace C-style casts with static_cast | Finlay Davidson | 2022-06-05 | 1 | -8/+10 |
| | | |||||
| * | Make functions const again | Riku Isokoski | 2022-04-25 | 2 | -2/+2 |
| | | |||||
| * | Update track progress in MusicService. Fix #127 | Riku Isokoski | 2022-04-25 | 2 | -2/+14 |
| | | |||||
| * | Merge branch 'develop' into remove-nm-reference | Max Friedrich | 2022-04-19 | 9 | -37/+91 |
| |\ | |||||
| | * | New changes according to the review : Priority 0 for display, 1 for system, ↵ | Jean-François Milants | 2022-03-21 | 1 | -0/+1 |
| | | | | | | | | | timer and ble host, and 2 for ble LL | ||||
| | * | Music app : when title/track name are truncated, add an ellipsis at the end ↵ | Jean-François Milants | 2022-03-21 | 1 | -5/+13 |
| | | | | | | | | | of the strings. | ||||
| | * | Add missing space in if expression. | Jean-François Milants | 2022-03-21 | 1 | -1/+1 |
| | | | |||||
| | * | Limit the size of the track and album name received by MusicService. This ↵ | Jean-François Milants | 2022-03-21 | 1 | -0/+7 |
| | | | | | | | | | should work around this bug : https://github.com/InfiniTimeOrg/InfiniTime/issues/825 and prevent heap over-allocation. | ||||
| | * | Add missing nrf_log.h includes shadowed by SystemMonitor.h | Reinhold Gschweicher | 2022-03-08 | 5 | -0/+5 |
| | | | | | | | | | | | | | 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 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵ | Jean-François Milants | 2022-02-20 | 4 | -41/+49 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | into evergreen22-airplane-mode Apply a few changes that were requested in the PR during the review. # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp | ||||
| | * | Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵ | Jean-François Milants | 2022-02-20 | 4 | -32/+57 |
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into evergreen22-airplane-mode # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp | ||||
| | | * | Add airplane mode feature | James A. Jerkins | 2021-12-23 | 4 | -32/+57 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements 'Airplane mode' feature to disable and enable bluetooth/ble Adds airplaneMode as a non-persisted setting Adds a setting menu for switching airplane mode on and off Displays an airplane symbol on the Digital watch face and the PineTimeStyle watch face when airplane mode is enabled Always enables bluetooth/ble on boot (disable airplane mode) Alphabetizes the settings menu options Style cleanups Closes #632 | ||||
| * | | | remove unused reference | minacode | 2022-02-16 | 2 | -2/+0 |
| |/ / | |||||
| * / | Fix biased BLE pass key generation | Zorvalt | 2022-02-12 | 1 | -1/+22 |
| |/ | |||||
| * | Optional secure pairing with a passkey | James A. Jerkins | 2021-12-21 | 3 | -6/+4 |
| | | | | | | Support passkey pairing when requested by the central Fix a comment and reorder warning | ||||
| * | Fix Failed rebase. | Tim Keller | 2021-12-10 | 2 | -5/+3 |
| | | |||||
| * | Fix more initializers | Tim Keller | 2021-12-10 | 1 | -12/+10 |
| | | |||||
| * | Fix large file support that broke due to a refactor. | Tim Keller | 2021-12-10 | 1 | -1/+1 |
| | | |||||
| * | Force variable cleanup because LFS makes assumptions about variable ↵ | Tim Keller | 2021-12-10 | 1 | -7/+5 |
| | | | | | initialization state | ||||
| * | Attempt at a more robust File handler | Tim Keller | 2021-12-10 | 1 | -8/+15 |
| | | |||||
| * | Change read to return LFS return values when reading a directory or ↵ | Tim Keller | 2021-12-10 | 1 | -12/+12 |
| | | | | | nonexistant file | ||||
| * | Fix string nullterminations, | Tim Keller | 2021-12-10 | 1 | -13/+23 |
| | | | | | Expand error codes. | ||||
| * | Added move function | Tim Keller | 2021-12-10 | 2 | -3/+29 |
| | | |||||
| * | Fix lvgl_open to respect littlefs open errors | Tim Keller | 2021-12-10 | 1 | -4/+2 |
| | | |||||
| * | Write works | Tim Keller | 2021-12-10 | 2 | -15/+68 |
| | | |||||
| * | Reading Seems to work? | Tim Keller | 2021-12-10 | 1 | -39/+39 |
| | | |||||
| * | Actually fix memory corruption, seems stable now | Tim Keller | 2021-12-10 | 2 | -65/+43 |
| | | | | | | ListDir MKDIR delete all seem to work Co-authored-by: Iambian <Iambian@users.noreply.github.com> | ||||
| * | List Dir works? | Tim Keller | 2021-12-10 | 3 | -17/+34 |
| | | |||||
| * | Focus on getting flash access working properly | Tim Keller | 2021-12-10 | 2 | -5/+7 |
| | | |||||
| * | Start of read command | Tim Keller | 2021-12-10 | 2 | -19/+158 |
| | | |||||
| * | Added Delete file | Tim Keller | 2021-12-10 | 2 | -28/+88 |
| | | | | | Added FS Stat. | ||||
