aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* p8: Fix build when building for P8 variantsFintasticMan2023-12-161-1/+1
| | | | | | | Building with a TARGET_DEVICE set to any of the P8 variants' names caused the build to fail, because they contained hyphens. The build defines a macro `TARGET_DEVICE_$VARIANT`, which fails if `$VARIANT` contains a hyphen.
* Application selection at build time : update documentationJean-François Milants2023-11-191-30/+88
| | | | Update documentation about the apps (Apps.md) : fix obsolete information, add doc about user/system apps and update the part about the implementation of a new app.
* docs: Update Apps.md to remove Screen param (#1752)Alex E2023-11-161-2/+2
| | | | | This is needed since #1629. Co-authored-by: FintasticMan <finlay.neon.kid@gmail.com>
* lv_img_conv_py: minimal python port of node moduleReinhold Gschweicher2023-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a minimal python port of the node.js module `lv_img_conv`. Only the currently in use color formats `CF_INDEXED_1_BIT` and `CF_TRUE_COLOR_ALPHA` are implemented. Output only as binary with format `ARGB8565_RBSWAP`. This is enough to create the `resources-1.13.0.zip`. Python3 implements "propper" "banker's rounding" by rounding to the nearest even number. Javascript rounds to the nearest integer. To have the same output as the original JavaScript implementation add a custom rounding function, which does "school" rounding (to the nearest integer) Update CMake file in `resources` folder to call `lv_img_conf.py` instead of node module. For docker-files install `python3-pil` package for `lv_img_conv.py` script. And remove the `lv_img_conv` node installation. --- gen_img: special handling for python lv_img_conv script Not needed on Linux systems, as the shebang of the python script is read and used. But just to be sure use the python interpreter found by CMake. Also helps if tried to run on Windows host. --- doc: buildAndProgram: remove node script lv_img_conv mention Remove node script `lv_img_conv` mention and replace it for runtime-depency `python3-pil` of python script `lv_img_conv.py`.
* Corrects typo for make option for recovery-loaderSteve Amor2023-10-041-1/+1
|
* navigation: Move font to external memory (#1838)JF2023-09-021-1/+11
| | | | | | | | | | The TTF font used by the navigation app is ~20KB and is stored in internal flash memory. To free this space, the TTF font is now converted in 2 "atlas pictures" (pictures that contain multiple concatenated images) stored in the external flash memory. The navigation app now accesses one of those 2 files and apply an offset to display the desired picture. The corresponding documentation has also been updated. Add comments about the layout of the pictures that contain the icon and about the indexing of those icons. In documentation (buildAndProgram.md), edit the section about the debug compilation mode. Remove the part about removing the Navigation app to free some memory (since it's not relevant anymore) and explain how to selectively build parts of the firmware in Debug mode.
* Include repository initialization in docker build docsTailyFair2023-08-111-0/+10
|
* branches: Update files to refer to main instead of developFinlay Davidson2023-03-025-14/+12
|
* CONTRIBUTING: Move from doc to rootRiku Isokoski2023-02-201-61/+0
| | | | This is so the GitHub UI picks it up correctly.
* docs: Limit number of jobs used for compilationFinlay Davidson2023-02-191-2/+2
|
* 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-132-38/+37
| | | | | These are instructions for maintainers, and should be in a separate document.
* 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.
* Fix Apps documentation DisplayApp method nameTailyFair2023-01-221-1/+1
|
* contribute.md: UpdateRiku Isokoski2023-01-221-6/+15
| | | | | Cleaned up the list of things you can help with. Added a few points
* doc: Add maintainer guideRiku Isokoski2023-01-221-0/+45
|
* minor grammar editsJohn Paul Wohlscheid2023-01-221-4/+4
|
* typo in the descriptiontom-programming2022-12-061-1/+1
| | | AMD64 and x86_64 are the same architecture - ARM64 should be specified instead
* fixed filenamemashuptwice2022-10-101-1/+1
|
* Edit all occurences of "watchface" to "watch face"mashuptwice2022-10-104-7/+7
|
* Add missing screenshot about the external resources support in Amazfish.Jean-François Milants2022-10-052-0/+0
|
* Add doc about external resources.Jean-François Milants2022-10-023-0/+102
|
* Applist is in ApplicationList.hmashuptwice2022-09-171-1/+1
|
* Remove CMake targets and corresponding CLI arguments that are specific to ↵Jean-François Milants2022-09-171-38/+2
| | | | the debugging environment (USE_JLINK, USE_OPENOCD and USE_GDB_CLIENT).
* Fix formatting.Jean-François Milants2022-09-111-11/+11
|
* Add doc about the new parameter `-DBUILD_RESOURCES`.Jean-François Milants2022-09-111-11/+12
|
* Fix markdown format with autoformatter (#1284)Riku Isokoski2022-08-2124-296/+407
|
* Simplify coding style (#1280)Riku Isokoski2022-08-211-37/+25
|
* Simplify contribute.md (#1281)Riku Isokoski2022-08-211-55/+13
|
* Move all images to doc. Remove old images. (#1282)Riku Isokoski2022-08-215-2/+2
|
* Docs reorganization (#1236)Riku Isokoski2022-07-214-131/+132
| | | | | | | * Docs reorganization Removed broken link * README.md relative link consistency
* Downgrade GNU Arm Toolchain to 10.3-2021.10Finlay Davidson2022-07-083-5/+5
| | | | | | This is because of this bug: https://community.arm.com/support-forums/f/compilers-and-libraries-forum/52623/gcc-11-2-arm-none-eabi-internal-compiler-error-illegal-instruction It is causing some of the GitHub Actions builds to fail.
* Add InfiniTime Vision document (#1196)Riku Isokoski2022-06-291-0/+33
|
* Add basic hardware configuration options for P8Christoph Honal2022-06-271-1/+1
| | | | | This enables the configuration of the LFCLK source, as well as the target hardware board pin configuration.
* Be more specific about the compiler versionFinlay Davidson2022-06-111-1/+1
|
* Replace more instances of old gcc verFinlay Davidson2022-06-112-3/+3
|
* Update arm gcc toolchain to 11.2-2022.02Finlay Davidson2022-06-111-2/+2
| | | | | | Updates the buildAndProgram doc and the docker image, which means GitHub Actions will also use the new toolchain.
* Fix typo in gettingStarted guide (#1178)kieranc2022-06-071-1/+1
|
* doc: Fix imageFile.png path in SWD.mdSeth Itow2022-06-061-1/+1
|
* revert portion of previous commitluz paz2022-06-051-1/+1
|
* Fix various typosluz paz2022-06-057-10/+10
| | | | Found via `codespell -q 3 -S ./src/libs -L ans,doubleclick,trough`
* Docker container documentation : Fix typos, 1 line per sentence, remove ↵Jean-François Milants2022-05-261-16/+17
| | | | obsolete paragraph, remove redundant 'image' parameter in the command to build the docker image, use ${PWD} instead of $(pwd).
* Docker container documentation : Adapt the `--user` documentation according ↵Jean-François Milants2022-05-261-24/+13
| | | | to the new behavior.
* Update links to the docker image with the new account : ↵Jean-François Milants2022-05-261-4/+4
| | | | infinitime/infinitime-build.
* Small modernization with --platform parameter in docker readmeJean-François Milants2022-05-261-2/+2
|
* The main build workflow for GitHub Actions now uses the infinitime-build ↵Jean-François Milants2022-05-261-4/+4
| | | | | | docker image to build the firmware. This allows to avoid the duplication of the build logic in Docker and Github workflow format. The Dockerfile has been slightly adapted (remove the USER instructions). Docker images are now published in DockerHub (jf002/infinitime-build).
* comment about common error "glyphs.map" in old nodejs (#1142)Yehoshua Pesach Wallach2022-05-181-1/+1
|
* update build stop, lv_font_conv not required globally installedReinhold Gschweicher2022-05-161-2/+1
|