aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* LittleVgl: Instantiate in DisplayAppRiku Isokoski2023-02-258-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 WatchdogRiku Isokoski2023-02-258-26/+12
|
* screens: Remove unused DisplayApp parametersRiku Isokoski2023-02-2572-156/+99
|
* screens: Remove explicit Screen constructorsRiku Isokoski2023-02-2533-44/+32
| | | | | This constructor didn't do anything since DisplayApp reference was removed from the Screen base class.
* screens: Remove displayapp parameter from screenRiku Isokoski2023-02-2530-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 linksRiku Isokoski2023-02-251-4/+4
|
* SystemTask: Move MotorController to DisplayAppRiku Isokoski2023-02-259-27/+25
| | | | | Vibrations should be associated with something happening on the UI. Therefore SystemTask should not be controlling the motor.
* displayapp: Make Ble references constRiku Isokoski2023-02-2430-42/+42
|
* displayapp: Make Cst816S references constRiku Isokoski2023-02-246-8/+8
|
* displayapp: Make Battery class references constRiku Isokoski2023-02-2430-41/+41
|
* TouchHandler: Do not store touch panel referenceRiku Isokoski2023-02-245-22/+17
|
* touchhandler: Remove LVGL dependencyRiku Isokoski2023-02-247-51/+39
| | | | Move LVGL specific code to the LittleVgl class
* libs: Disable clang-format and -tidyRiku Isokoski2023-02-232-0/+2
|
* LittleVgl: Remove unused Cst816S referenceRiku Isokoski2023-02-234-8/+4
|
* TimerController: Use chrono for durationsRiku Isokoski2023-02-233-14/+17
|
* WatchfaceAnalog: add ble icon (#1430)Itai Nelken2023-02-212-0/+15
|
* CONTRIBUTING: Move from doc to rootRiku Isokoski2023-02-202-1/+1
| | | | This is so the GitHub UI picks it up correctly.
* CONTRIBUTING: Remove CONTRIBUTING linkRiku Isokoski2023-02-201-1/+0
| | | | The GitHub UI doesn't resolve the link correctly
* docs: Limit number of jobs used for compilationFinlay Davidson2023-02-191-2/+2
|
* clang-format: Always break template declarationsRiku Isokoski2023-02-165-9/+17
| | | | | I find this format easier to read, because the definitions are at the expected indentation, making it easier to find what I'm looking for.
* Fix Link in buildWithVScodeTim Aschhoff2023-02-161-1/+1
|
* files-needed-by-factory: Adjust headersRiku Isokoski2023-02-131-2/+2
|
* files-needed-by-factory: Move to separate documentRiku Isokoski2023-02-133-38/+38
| | | | | These are instructions for maintainers, and should be in a separate document.
* SettingSteps: Update UIRiku Isokoski2023-02-121-5/+13
| | | | Bigger buttons, use new color.
* SettingSteps: Improve goal settingRiku Isokoski2023-02-121-14/+18
| | | | | | Long pressing will change the value by 1000, whereas clicks will change it by 500. This allows setting more precise values, while also making it easier to set any value.
* contribute.md: Add commit format sectionRiku Isokoski2023-02-121-0/+14
| | | | | Inspired by: https://www.klipper3d.org/CONTRIBUTING.html#format-of-commit-messages
* contribute.md: Improve contributing instructionsRiku Isokoski2023-02-121-7/+26
| | | | | | | Denser instructions for absolute beginners. Links to GitHub docs. Add PR checklist and commit conventions sections based on the maintainer's guide.
* Add WatchMate to the list of companion appsAndrii Zymohliad2023-02-121-0/+1
|
* Steps: Update UIRiku Isokoski2023-02-011-5/+7
|
* stopwatch: Update UIRiku Isokoski2023-02-013-52/+91
| | | | | | The time used to be yellow while paused. Changing it to white made the paused state less distinct. Blinking the time while paused makes the state distinct again.
* workflow: Buildsize comment when simulator failsRiku Isokoski2023-01-311-0/+1
| | | | | | | | The workflow checks that the buildsize comparison succeeds. The download artifact step also checks that all of the main workflow succeeds. This isn't necessary, and causes the comment not to be created when the simulator build fails. This change disabled the success conclusion requirement.
* workflow: Updated workflow comment for allRiku Isokoski2023-01-312-24/+65
| | | | | | | | | | | | | | | | | The previous version failed, because it looked for the check from the branch in the fork, but looked for it in the main repo. Now uses the sha to get the commit on which checks were run. Previous description This works by uploading the data from the main workflow with low permissions as an artifact, then downloading the data in a workflow with higher permissions to post the comment. Third party actions are fixed at a commit, in case they get compromised. Also set the build-firmware VM to ubuntu-22.04, which was missed when updating workflow deps earlier.
* Revert "workflow: Comment build size on all PRs"Riku Isokoski2023-01-312-65/+24
| | | | This reverts commit 012c3d25f313148734b4720e376ec24ff6089453.
* workflow: Comment build size on all PRsRiku Isokoski2023-01-312-24/+65
| | | | | | | | | | | This works by uploading the data from the main workflow with low permissions as an artifact, then downloading the data in a workflow with higher permissions to post the comment. Third party actions are fixed at a commit, in case they get compromised. Also set the build-firmware VM to ubuntu-22.04, which was missed when updating workflow deps earlier.
* Merge branch 'aleexxzeero-proper-mcuboot-app-size' into developJean-François Milants2023-01-293-8/+73
|\
| * Linker script: Update gcc_nrf52.ld to reflect changes done in ↵Jean-François Milants2023-01-291-2/+37
| | | | | | | | | | | | gcc_nrf52-mcuboot.ld. The only change between the 2 linker scripts is the ORIGIN address of the flash memory allocated to InfiniTime. The MCUBoot one starts at 0x8000, which is the address that will be loaded by MCUBoot after the boot process. This linker script allow to run the application without MCUBoot by setting the origin address to 0x00. The APP_SIZE is the same for both linker scripts, but it could be set to a higher value in this one for development purposes.
| * #1463 Updated CMakeLists.txt for building images with expected alignmentAlex Dolzhenkov2022-12-291-4/+4
| |
| * Update gcc_nrf52-mcuboot.ldAlex Dolzhenkov2022-12-271-1/+2
| | | | | | Co-authored-by: JF <JF002@users.noreply.github.com>
| * Update gcc_nrf52-mcuboot.ldAlex Dolzhenkov2022-12-271-0/+1
| | | | | | Co-authored-by: JF <JF002@users.noreply.github.com>
| * #1463 Replaced decimal numbers with hexAlex Dolzhenkov2022-12-051-2/+2
| |
| * #1463 Fixed linker script syntaxAlex Dolzhenkov2022-12-041-2/+2
| |
| * #1463 Update mcuboot-app linker file to be more consistentAlex Dolzhenkov2022-12-031-4/+4
| |
| * Fix linker script to prevent using not available flash memoryAlex Dolzhenkov2022-12-031-2/+30
| |
* | SettingChimes: Use CheckboxListRiku Isokoski2023-01-292-66/+48
| |
* | SettingBluetooth: Use CheckboxListRiku Isokoski2023-01-292-79/+42
| |
* | LittleVgl: Small cleanupRiku Isokoski2023-01-292-10/+6
| |
* | theme: Replace LV_DPX with a constexpr variantRiku Isokoski2023-01-291-0/+13
| |
* | theme: Cleanup unused stylesRiku Isokoski2023-01-291-40/+6
| | | | | | | | | | Condensed paddings with pad_all No visual changes
* | theme: Remove unused parametersRiku Isokoski2023-01-293-28/+10
| |
* | build-size-workflow: Fix when base gets updatedRiku Isokoski2023-01-281-10/+16
| | | | | | | | | | | | | | | | The github.event.pull_request.base.sha in the workflow doesn't get updated when there are new commits in the base branch. Instead always checkout the branch to check the sha manually and cache only the build. The ownership fix seems to still be necessary