Skip to content

Commit

Permalink
Version 7.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasFlamel1 committed Jul 3, 2023
1 parent 80e988d commit 91ee6d8
Show file tree
Hide file tree
Showing 5 changed files with 8,289 additions and 8,312 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ endif

# Compiler settings
CC := $(CLANGPATH)clang
CFLAGS += -Oz -Wall -Wextra
CFLAGS += -Oz -Wall -Wextra -Wno-deprecated-declarations
AS := $(GCCPATH)arm-none-eabi-gcc
LD := $(GCCPATH)arm-none-eabi-gcc
LDFLAGS +=
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ git clone https://github.com/LedgerHQ/nanos-secure-sdk.git
git clone https://github.com/LedgerHQ/ledger-secure-sdk.git
mv ledger-secure-sdk nanox-secure-sdk
cd nanox-secure-sdk
git checkout nanox_2.1.0
git checkout API_LEVEL_1
git checkout nanox_2.2.1
git checkout API_LEVEL_5
git pull
echo nanox > .target
cd ..
Expand All @@ -41,8 +41,8 @@ cd ..
git clone https://github.com/LedgerHQ/ledger-secure-sdk.git
mv ledger-secure-sdk stax-secure-sdk
cd stax-secure-sdk
git checkout stax_1.1.0-rc1
git checkout API_LEVEL_9
git checkout stax_1.2.1
git checkout API_LEVEL_11
git pull
echo stax > .target
cd ..
Expand Down
2 changes: 1 addition & 1 deletion src/commands/get_mqs_challenge_signature.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void processGetMqsChallengeSignatureRequest(__attribute__((unused)) const unsign
epochToTime(&time, timestamp - timeZoneOffset * SECONDS_IN_A_MINUTE);

// Check if device has low height
#if BAGL_HEIGHT < 64
#if defined BAGL_HEIGHT && BAGL_HEIGHT < 64

// Copy time into the time line buffer
snprintf(timeLineBuffer, sizeof(timeLineBuffer), "%02d:%02d:%02d on %d-%02d-%02d UTC%c%02d:%02d", time.hour, time.minute, time.second, time.year, time.month, time.day, (timeZoneOffset > 0) ? '-' : '+', abs(timeZoneOffset) / MINUTES_IN_AN_HOUR, abs(timeZoneOffset) % MINUTES_IN_AN_HOUR);
Expand Down
2 changes: 1 addition & 1 deletion src/menus.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#define PROGRESS_BAR_PADDING 6

// Check if device has low height
#if BAGL_HEIGHT < 64
#if defined BAGL_HEIGHT && BAGL_HEIGHT < 64

// Progress bar height
#define PROGRESS_BAR_HEIGHT 10
Expand Down
Loading

0 comments on commit 91ee6d8

Please sign in to comment.