| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Only use one Dockerfile and build.sh script for both docker and devcontainer
* Remove all now unneccessary tasks and scripts
* Update to clang-format-14
* Move devcontainer.json into root folder
* Fix conditional statements in Dockerfile
* Move .devcontainer/README into doc/usingDevcontainers
* Remove obsolete VSCode Task
* Change standard compiler path to the correct compiler
* Set GDB Path for debugging
* Hide broken buttons from CMake Extension
* Refactor .devcontainer
* Remove unneccessary postBuildCommand
* Add devcontainer dependencies to all docker images
* Add Devcontainer Debug launch config
* Add an additional c_cpp_properties config as a fallback for devcontainer
* Remove obsolete Docker Argument
* Fix wrong C/Cpp versions
* Fix silent fail of gdb, add libncurses5
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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`.
|
| | |
|
| |
|
|
| |
This reverts commit 35654fbd982e27383ffc15446d9ab0a8606ae29d.
|
| |
|
|
| |
This reverts commit 7103f9d8063431b778df83244de5862d963e1ce8.
|
| |
|
| |
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
Return the build status as return code from the `main` helper function.
In the process convert the handling if the file was sourced or directly
executed into an explicit if/else statement to make the intent clearer.
In case of an build error the error is now reported at the build step,
where the error happened.
Fixes: https://github.com/InfiniTimeOrg/InfiniTime/issues/1292
|
| |
|
|
| |
the debugging environment (USE_JLINK, USE_OPENOCD and USE_GDB_CLIENT).
|
| |
|
|
| |
Add lv_img_conf in Docker image to build resources at build time.
|
| | |
|
| |
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
Updates the buildAndProgram doc and the docker
image, which means GitHub Actions will also use
the new toolchain.
|
| |
|
|
|
|
| |
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).
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
Gitpod workspace path is based on repo name... it was `/workspace/Pinetime`,
but after the repo rename it's now `/workspace/InfiniTime`.
Also added second pip call as it's in the main dockerfile.
|
| |\
| |
| |
| |
| |
| |
| |
| | |
# Conflicts:
# src/CMakeLists.txt
# src/displayapp/DisplayApp.h
# src/systemtask/SystemTask.cpp
# src/systemtask/SystemTask.h
|
| | | |
|
| | |
| |
| |
| | |
adafruit-nrfutil on the build machine) : BUILD_DFU (disabled by default, enabled in docker build).
|
| |/
|
|
|
|
|
|
|
| |
as a recovery firmware : it only provides basic UI and BLE connectivity for OTA.
This new FW is build on the same codebasse than the actual InfiniTime. Only the display task is different (this allows to remove lvgl from the recovery fw, which is very heavy).
CMake builds and docker have been modified accordingly.
Note than the fw is converted into an image and then into a DFU in the cmake build (previously, it was only done in the
|
| | |
|
| |
|
|
|
| |
And forget the chown.
sudo can be used if the dependencies ever need to be updated "live"
|
| |
|
|
| |
Little configuration to give https://gitpod.io users an environment with the SDKs pre-installed
|
| | |
|
| | |
|
| |
|
|
| |
Added some extra dir names to gitignore
|
| |
|
|
| |
Also fixed a bug with empty quoted strings
|
| |
|
|
| |
Script is written to handle it's own dependencies so it can be used within Docker or on the host system
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
(https://github.com/lupyuen/pinetime-rust-mynewt/releases/tag/v5.0.4)
|
| |
|
|
| |
project.
|
| |
|
|
| |
and post_build.sh that is generated by cmake build.sh
|
| |
|
|
|
|
|
| |
in their filename.
Update Docker build script accordingly.
Also fix permission issue with docker build (all files belonged to root).
|
| | |
|
|
|
arm64 arch.
|