aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* More reasonable line lengths in Apps.md and Intro.mdClemens von Molo2021-10-082-18/+71
|
* minor corrections and notice about ui guidelines in docsClemens von Molo2021-10-061-4/+6
|
* multiple improvements to code docsClemens von Molo2021-10-062-37/+39
|
* advise against unecessary additional tasks in docsClemens von Molo2021-10-051-2/+3
|
* Add docs for app creation and code structureClemens von Molo2021-10-053-1/+92
|
* Merge pull request #705 from dyamon/issue-templatesJF2021-10-042-0/+100
|\ | | | | Issue templates to tame the wilderness
| * Add templates for bug reports and feature requestsFederico Igne2021-09-302-0/+100
| |
* | Merge pull request #714 from InfiniTimeOrg/Avamander-patch-1JF2021-10-031-9/+9
|\ \ | | | | | | Removed an unnecessary space and some punctuation
| * | Removed an unnecessary space and some punctuationAvamander2021-10-031-9/+9
|/ / | | | | Closes https://github.com/InfiniTimeOrg/InfiniTime/pull/233
* | Merge pull request #623 from Riksu9000/lvgl_queuetimeoutJF2021-10-032-23/+4
|\ \ | | | | | | Let LVGL control queueTimeout
| * | Remove unused variableRiku Isokoski2021-09-211-1/+0
| | |
| * | Let lvgl control queueTimeoutRiku Isokoski2021-08-292-22/+4
| | |
* | | Merge pull request #638 from Riksu9000/detect_full_chargeJF2021-10-039-25/+71
|\ \ \ | | | | | | | | Detect full charge and improve watchface battery display
| * | | Show plug icon while plugged inRiku Isokoski2021-09-223-5/+5
| | | |
| * | | Merge branch 'develop' into detect_full_chargeRiku Isokoski2021-09-2247-243/+942
| |\ \ \
| * | | | Use percentage instead of IsFullRiku Isokoski2021-09-032-5/+1
| | | | |
| * | | | Auto realign battery icon in Analog watch faceRiku Isokoski2021-09-031-0/+1
| | | | |
| * | | | Detect full charge and improve watchface displayRiku Isokoski2021-09-039-26/+75
| | | | |
* | | | | Merge pull request #692 from danielgjackson/fix-fs-sizeJF2021-10-031-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix the size of the filesystem.
| * | | | | Fix the size of the filesystem.Daniel Jackson2021-09-271-1/+1
| | | | | | | | | | | | | | | | | | Correct typo: 0x400000 - 0x0B4000 = 0x34C000.
* | | | | | Merge pull request #700 from Sematre/fix-dead-linkJF2021-10-021-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix dead link in README
| * | | | | | Fix dead link in READMESematre2021-09-281-1/+1
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #711 from geekbozu/BatteryReadFixJF2021-10-021-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Remove static declaration on batteryValue preventing read attribute from updating.
| * | | | | Remove static declartion on batteryValue preventing read attribute from ↵Tim Keller2021-10-021-1/+1
|/ / / / / | | | | | | | | | | | | | | | updating.
* | | | | Set version to 1.6.0Jean-François Milants2021-09-281-1/+1
| | | | |
* | | | | Merge pull request #688 from danielgjackson/fix-advertising-18-hoursJF0022021-09-281-1/+1
|\ \ \ \ \ | |/ / / / |/| | | | Fix advertising packets stopping after 18.2 hours
| * | | | Correctly return the tick at which the RF will be fully enabled.Daniel Jackson2021-09-251-1/+1
| | | | | | | | | | | | | | | Always returning 0 (when `MYNEWT_VAL_BLE_LL_RFMGMT_ENABLE_TIME` is not defined), rather than a time near to the current tick, causes an issue in at least one place: `ble_ll_adv_sm_start()`, where the calculation of `delta` overflows when the system timer is at 0x80000000 or above -- causing an incorrect, huge adjustment to be made to the scheduled time, ultimately stopping adverts from being sent.
* | | | | Set version to 1.5.0Jean-François Milants2021-09-261-1/+1
|/ / / /
* | | | Merge pull request #664 from Riksu9000/disable_notif_onlyJF0022021-09-239-43/+19
|\ \ \ \ | |_|/ / |/| | | Toggle notifications only, keep vibrations.
| * | | Merge branch 'develop' into disable_notif_onlyRiku Isokoski2021-09-148-69/+121
| |\ \ \
| * \ \ \ Merge branch 'develop' into disable_notif_onlyRiku Isokoski2021-09-1328-162/+177
| |\ \ \ \
| * | | | | Toggle notifications only, keep vibrations.Riku Isokoski2021-09-129-43/+19
| | | | | |
* | | | | | Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants2021-09-191-1/+1
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #669 from ↵JF0022021-09-181-1/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NeroBurner/fix_unsigned_comparison_warning_metronome Fix unsigned/signed comparison warning in Metronome.cpp
| | * | | | | | Fix unsigned/signed comparison warning in Metronome.cppReinhold Gschweicher2021-09-161-1/+1
| | | |_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `xTaskGetTickCount()` returns a `TickType_t`, which is defined as an `uint32_t`. This is compared to the `bpm` variable, which is a `int16_t` in the range of 40 to 220 as defined in the constructor. ```cpp lv_arc_set_range(bpmArc, 40, 220); ``` Just assume that `bpm` is greater than 0, as this would result in a divison by zero or negative values, which would unintentionally underflow to a very large number.
* | / | | | | Fix the display of the date after a reset : when the date/time was restored ↵Jean-François Milants2021-09-191-0/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from the noinit area, the date was displayed as "--" instead of the actual date. This issue was caused by DateTime::SetCurrentTime() that would not update the internal state of the class : dayOfWeek, Month, Year were not properly updated according to the current time.
* | | | | | Merge branch 'geekbozu-PersistantStorage' into developJean-François Milants2021-09-189-8/+100
|\ \ \ \ \ \
| * | | | | | Merge branch 'PersistantStorage' of git://github.com/geekbozu/InfiniTime ↵Jean-François Milants2021-09-189-8/+100
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into geekbozu-PersistantStorage # Conflicts: # src/systemtask/SystemTask.cpp
| * | | | | | Add some commentsTim Keller2021-09-021-2/+6
| | | | | | |
| * | | | | | Move noinit to after BSS segment,Tim Keller2021-08-232-18/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now dynamically allocates noinit area size stores it after the bss before the heap and stack.
| * | | | | | Add some VSCODE stuff to gitignore...Tim Keller2021-08-192-2/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow settings to stop naggin me that it has added assosiation types
| * | | | | | Move Backup to the system task.Tim Keller2021-08-194-2/+2
| | | | | | |
| * | | | | | Add clearing of noinit segment on bad wordTim Keller2021-08-193-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code readability cleanup
| * | | | | | Add MCUBOOT linker changesTim Keller2021-08-192-5/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | use better linker constant names
| * | | | | | Make Clock Persistant.Tim Keller2021-08-174-3/+28
| | | | | | |
* | | | | | | Fix DisplayAppRecovery : add AlarmController to ctor().Jean-François Milants2021-09-182-0/+3
| | | | | | |
* | | | | | | Merge pull request #662 from mruss77/basic-alarm-appJF0022021-09-1814-2/+537
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Basic alarm app
| * | | | | | resolve conflict in src/systemtask/Messages.hMark Russell2021-09-1633-232/+300
| |\ \ \ \ \ \ | |/ / / / / / |/| | | | | |
* | | | | | | Merge pull request #658 from NeroBurner/patch-2JF0022021-09-141-4/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Run CI on master and develop branch
| * | | | | | | Run CI on master and develop branchNeroBurner2021-09-101-4/+4
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | The documentation https://github.com/JF002/InfiniTime/blob/develop/doc/contribute.md#how-to-submit-a-pull-request- tells us to make pull requests against `develop` branch. Update the CI to run on those pull requests to have a check if the PR breaks something unintentionally.