Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to firmware v1.6 #5

Merged
merged 20 commits into from
Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ obj
src/glyphs.c
src/glyphs.h
.vscode
.idea
.idea
*.pyc
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include $(BOLOS_SDK)/Makefile.defines


APPVERSION_M=1
APPVERSION_N=3
APPVERSION_N=4
APPVERSION_P=1
APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)

Expand Down Expand Up @@ -62,6 +62,7 @@ DEFINES += HAVE_WEBUSB WEBUSB_URL_SIZE_B=0 WEBUSB_URL=""

DEFINES += UNUSED\(x\)=\(void\)x
DEFINES += APPVERSION=\"$(APPVERSION)\"
DEFINES += HAVE_UX_FLOW


ifeq ($(TARGET_NAME),TARGET_NANOX)
Expand Down Expand Up @@ -130,10 +131,10 @@ include $(BOLOS_SDK)/Makefile.glyphs
### computed variables
APP_SOURCE_PATH += src
SDK_SOURCE_PATH += lib_stusb lib_stusb_impl lib_u2f
SDK_SOURCE_PATH += lib_ux

ifeq ($(TARGET_NAME),TARGET_NANOX)
SDK_SOURCE_PATH += lib_blewbxx lib_blewbxx_impl
SDK_SOURCE_PATH += lib_ux
endif


Expand Down
4 changes: 4 additions & 0 deletions doc/eosapp.asc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Application version 1.2 - 28th of November 2018
## 1.3
- Add WebUSB support

## 1.4.1
- Update to firmware v1.6
- Fix for https://github.com/tarassh/eos-ledger/issues/13

## About

This application describes the APDU messages interface to communicate with the Eos application.
Expand Down
Loading