aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Remove the vibration while charging (#1768)Max Friedrich2025-05-163-5/+0
| | | | | | | | | | | * DisplayApp.cpp: Remove the vibration from OnChargingEvent This fixes a bug where the vibration interupts the physical connection with the charger and therefore triggers a new charging event and vibration, ending in a cycle of vibrations while charging. * remove OnChargingEvent message from DisplayApp --------- Co-authored-by: minacode <minamoto9@web.de>
* Add background color to progress bar when flashing firmware (#2237)Titus2025-05-151-1/+5
|
* Simple calculator (#1483)Max Friedrich2025-05-128-1/+465
| | | | | | Co-authored-by: minacode <minamoto9@web.de> Co-authored-by: Finlay Davidson <finlay.davidson@coderclass.nl> Co-authored-by: SuIông N. <Boteium@users.noreply.github.com> Co-authored-by: mark9064 <30447455+mark9064@users.noreply.github.com>
* work around g++ version 12, 13 and 14 spurious warning (#2158)lmamane2025-03-141-0/+5
| | | | | which is an error since we compile with -Werror Co-authored-by: Lionel Elie Mamane <lionel@mamane.lu>
* BatteryInfo App Redesign using arc (#2236)Titus2025-03-142-21/+24
| | | | | | | | | | Redesign BatteryInfo App using an Arch widget instead of a bar. The colors I used are as follows: - Discharging (default): green - Charging: lime - Battery full: blue - Battery low (<10%): red
* Fix Infineat crash when charging with AOD (#2256)Steveis2025-02-262-2/+6
| | | | Optimise the battery animation to not use 100% CPU (which causes DisplayApp to spin forever with AOD) (DisplayApp also needs to be fixed in the future so it cannot spin infinitely)
* Improve no notification text (#2238)Titus2025-02-101-2/+2
| | | Change the "No notification" text to "No notifications"
* Alarm: Simplify alarm alerting screen (#2211)ljahn2025-01-212-3/+10
| | | | | | | | | | | | Simplify alarm alerting screen and fix bug with alerting on time value change SetAlerting creates an lv_task to automatically call StopAlerting after one minute. This task will call an invalid function reference and lead to a crash under the following condition: All exit paths but the time value change (so not considering this fix) call StopAlerting themselves, which also terminates the lv_task. However, the value change callback only calls DisableAlarm, because its normal use case is for setting up an alarm, where you have to re-confirm enabling the alarm after every change you make. DisableAlarm still sets isAlerting in the alarmController to false, probably because someone thought a currently alerting but also disabled alarm makes no sense, this was introduced in a0cd439. That causes the destructor of Alarm to think there is nothing to do regarding the alerting when the alarm screen is dismissed. Therefore it does not call StopAlerting and the lv_task is left with an invalid function pointer, because Alarm does not exist anymore once the lv_task finally goes to call the callback function
* Show alarm controller state in status iconJozef Mlich2025-01-0511-9/+44
|
* weather: Fix inverted imperial forecast temperaturesVictor Kareh2024-12-101-3/+3
| | | | | | | When converting to imperial units, the min and max temperatures were incorrectly inverted, causing confusion in the display. Fixes https://github.com/InfiniTimeOrg/InfiniTime/issues/2183
* Use all free RAM for FreeRTOS heapFelipe Martínez2024-12-097-20/+102
| | | | | * Use all free RAM for FreeRTOS heap * Wrap newlib malloc and related functions * Implement calloc
* spellingLionel Elie Mamane2024-11-251-1/+1
|
* remove unused includeLionel Elie Mamane2024-11-251-1/+0
|
* cmake: fix python path with use multi-version pythonxz-dev2024-11-172-0/+2
|
* Ignore old GoToRunning messagesmark90642024-11-171-2/+11
|
* Weather: fix min and max temperature being switchedLionel Elie Mamane2024-11-161-2/+2
|
* weather: Switch to std::optional for Forecast daysFintasticMan2024-11-043-14/+14
| | | | | Also only iterate over the number of days actually in use, rather than MaxNbForecastDays.
* Switch to simpler temperature interfaceFintasticMan2024-11-048-78/+79
|
* weather: Refactor temperature type for type safetyFintasticMan2024-11-048-62/+84
| | | | | | | There is now a Temperature struct in the weather service, which holds the internal representation. There is also a temperature struct in the Applications namespace, which holds the temperature in either Celsius or Fahrenheit.
* Update Date&Time settings label for "Date & Time"Samuel Dorsaz2024-11-041-1/+1
|
* Remove OnTouchEventmark90642024-10-273-7/+1
|
* Unify touch panel handlingmark90642024-10-272-24/+17
|
* Process touch events only when awakemark90642024-10-271-1/+1
|
* Clear ongoing taps when going to sleepmark90642024-10-273-0/+14
|
* SimpleWeatherService #include <array>Lionel Elie Mamane2024-10-271-1/+1
| | | | | | not <vector> as that is what is actually used. Fixes build failure InfiniTime/src/components/ble/SimpleWeatherService.h:86:18: error: field ‘location’ has incomplete type ‘Pinetime::Controllers::SimpleWeatherService::Location’ {aka ‘std::array<char, 33>’
* datetime: Set the default year to the year during compileFintasticMan2024-10-271-5/+20
|
* Restrict hardware reactivation when not sleepingmark90642024-10-271-9/+11
|
* Improve sleep time calculation docsmark90642024-10-272-15/+20
|
* Replace rounded div macromark90642024-10-271-2/+5
|
* Refactor into defined statesmark90642024-10-276-38/+52
|
* 8hz idlemark90642024-10-271-2/+1
|
* Remove unused submodule QCBOR (#2138)NeroBurner2024-10-091-0/+0
| | | | The submodule isn't used anymore. Remove the submodule reference completely.
* MusicService: add missing includes for TickType_t and xTaskGetTickCount (#2130)NeroBurner2024-09-292-0/+3
| | | | | Add `FreeRTOS.h` include for the directly used data type `TickType_t` in the header and the function `xTaskGetTickCount` from FreeRTOS's `task.h`
* Remove unused pointer to DisplayApp member variables (#2125)NeroBurner2024-09-299-14/+6
| | | | | | | | In the screens that use `DisplayApp *app` and pass it to a child item, or use the reference just in the constructor. Afterwards the `app` member is not used. So remove it from the private member variables. Completely remove `app` parameter from `SettingDisplay` constructor as it is unused.
* Alarm persist to flash (#1367)NeroBurner2024-09-285-48/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | * AlarmController: Add saving alarm time to file Save the set alarm time to the SPI NOR flash, so it does not reset to the default value when the watch resets, e.g. due to watchdog timeout or reflashing of a new version of InfiniTime. Just like the `Settings.h` `LoadSettingsFromFile()` the previous alarm at boot (if available) and `SaveSettingsToFile()` the current alarm when the `Alarm.h` screen is closed (only if the settings have changed). The alarm-settings file is stored in `.system/alarm.dat`. The `.system` folder is created if it doesn't yet exist. Fixes: https://github.com/InfiniTimeOrg/InfiniTime/issues/1330 * alarmController: close .system dir after usage Close the `lfs_dir` object for the `.system` dir after usage. Otherwise on the second changed alarm the system will lockup because the `.system` dir is already open and was never closed. --------- Co-authored-by: Galdor Takacs <g@ldor.de>
* Hrs3300: fix includes for std::begin/std::endReinhold Gschweicher2024-09-221-0/+1
| | | | | | | | | | | | | | | Fix for Hrs3300 PR about Atomic HRS reads: https://github.com/InfiniTimeOrg/InfiniTime/pull/1845 We use `std::begin` and `std::end`, but we don't include one of the headers that define those functions. See https://en.cppreference.com/w/cpp/iterator/begin for a list of headers that define `std::begin` and `std::end`. Starting with GCC 14 this leads to a compilation error presumably because they cleaned up their headers. Fix code by inlcuding `<iterator>`
* Atomic HRS reads (#1845)mark90642024-09-225-37/+37
| | | | | | | | | | - Combine the reading of all `HRS3300` registers into one I2C read so data is not partial - Downsizes both HRS and ALS to 16bit as the sensor does not generate larger than 16bit values in its current configuration - Increasing the resolution by 1 bit doubles the sensor acquisition time, since we are already at 10Hz we are never going to use a higher resolution - The PPG algorithm buffers for ALS/HRS are already 16bit anyway - Remove functions for setting gain / drive that are unused throughout the codebase - Calculate constants with constexpr
* Refactor doNotGoToSleep to a wakelock countermark90642024-09-2117-41/+87
|
* Refactor SystemTask state handling for resiliencemark90642024-09-215-88/+100
| | | | | | State transitions now happen immediately where possible This simplifies state management in general, and prevents bugs such as the chime issue from occurring in the first place
* Remove unused method declarationsmark90642024-09-211-3/+0
|
* notifications: Dismiss to watchface when empty (#1716)Eli Tan2024-09-181-4/+5
| | | | | | | | | Set `running` to false to flag end of watchface when there are no more notifications left to display. I found it slightly annoying that dismissing all notifications leaves me with a "No notification to display" message. Instead of dismissing to a relatively useless message, dismiss to watchface.
* Restrict debugging monitor to debug buildsmark90642024-09-141-1/+1
|
* Clean unused DisplayApp messagesmark90642024-09-143-34/+7
|
* Use DirtyValue for timermark90642024-09-142-8/+14
|
* Size optimise NRF SDK buildmark90642024-09-141-1/+0
|
* DisplayApp: Go to clock on sleep if no app loadedVictor Kareh2024-08-221-2/+14
| | | | | | When turning off the screen, if there is no actual app loaded (i.e. we are still in the Launcher, Notifications, QuickSettings, or Settings screens) we should just reload the Clock app directly.
* Advertise HR servicemark90642024-08-184-12/+11
|
* Remove space before colonDerry Tutt2024-08-181-2/+2
|
* Display the SPI flash JEDEC IDs in SystemInformation.Jean-François Milants2024-08-059-13/+38
| | | | This is needed since a new memory chip will be used in future batches of PineTimes.
* aod: simplify AOD disablement based on notification statusmark90642024-08-051-32/+5
|