-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added mf1 increment/decrement/restore/transfer cmd
- Loading branch information
1 parent
ecf3c06
commit 4ad951f
Showing
9 changed files
with
350 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# The docker compose file can build firmware in docker image. | ||
# | ||
# - Pull the latest docker image: `docker compose pull` | ||
# - Build ultra fw: `docker compose up build-ultra` | ||
# - Build lite fw: `docker compose up build-lite` | ||
|
||
services: | ||
# docker compose up build-ultra | ||
build-ultra: | ||
image: ghcr.io/rfidresearchgroup/chameleonultra-fw-builder:main | ||
platform: linux/amd64 | ||
volumes: | ||
- '.:/workdir:rw' | ||
environment: | ||
CURRENT_DEVICE_TYPE: ultra | ||
command: ./firmware/build.sh | ||
# docker compose up build-lite | ||
build-lite: | ||
image: ghcr.io/rfidresearchgroup/chameleonultra-fw-builder:main | ||
platform: linux/amd64 | ||
volumes: | ||
- '.:/workdir:rw' | ||
environment: | ||
CURRENT_DEVICE_TYPE: lite | ||
command: ./firmware/build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.