-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3c3a185 bitbox02: add bitbox02 simulator and tests (asi345) 000e5c5 bitbox02 library: Update to v6.3.0 (asi345) Pull request description: Recently, a simulator for BitBox02 was implemented. Therefore, we also wanted to add this to HWI repository for automated tests and ease of reference in the future. ACKs for top commit: achow101: ACK 3c3a185 Tree-SHA512: 79dd9f65c126dda11c595f6593b00e96e2bfae3dc72bd84e8c1f2c74133985a6ac0330927eaaba54130e245ed607aca7829c9b7a56671dc193b7e32c279d6c27
- Loading branch information
Showing
30 changed files
with
753 additions
and
216 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
docker volume rm bitbox02_volume || true | ||
docker volume create bitbox02_volume | ||
CONTAINER_VERSION=$(curl https://raw.githubusercontent.com/BitBoxSwiss/bitbox02-firmware/master/.containerversion) | ||
docker pull shiftcrypto/firmware_v2:$CONTAINER_VERSION | ||
docker run -i --rm -v bitbox02_volume:/bitbox02-firmware shiftcrypto/firmware_v2:$CONTAINER_VERSION bash -c \ | ||
"cd /bitbox02-firmware && \ | ||
git clone --recursive https://github.com/BitBoxSwiss/bitbox02-firmware.git . && \ | ||
git config --global --add safe.directory ./ && \ | ||
make -j simulator" |
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.