Skip to content

Commit

Permalink
Fix lib_standard_app include path
Browse files Browse the repository at this point in the history
  • Loading branch information
cedelavergne-ledger committed Apr 15, 2024
1 parent 849ae04 commit 2df3eb5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ APP_SOURCE_FILES += ./ethereum-plugin-sdk/src/common_utils.c
APP_SOURCE_FILES += ./ethereum-plugin-sdk/src/plugin_utils.c
INCLUDES_PATH += ./ethereum-plugin-sdk/src
APP_SOURCE_FILES += ${BOLOS_SDK}/lib_standard_app/crypto_helpers.c
INCLUDES_PATH += ${BOLOS_SDK}/lib_standard_app

ifeq ($(TARGET_NAME),TARGET_STAX)
NETWORK_ICONS_FILE = $(GEN_SRC_DIR)/net_icons.gen.c
Expand Down
2 changes: 1 addition & 1 deletion src/handle_check_address.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "os.h"
#include "shared_context.h"
#include "string.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"

#define ZERO(x) explicit_bzero(&x, sizeof(x))

Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "commands_712.h"
#include "challenge.h"
#include "domain_name.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"

unsigned char G_io_seproxyhal_spi_buffer[IO_SEPROXYHAL_BUFFER_SIZE_B];

Expand Down
2 changes: 1 addition & 1 deletion src_features/getPublicKey/cmd_getPublicKey.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "feature_getPublicKey.h"
#include "common_ui.h"
#include "os_io_seproxyhal.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"

void handleGetPublicKey(uint8_t p1,
uint8_t p2,
Expand Down
2 changes: 1 addition & 1 deletion src_features/signMessage/ui_common_signMessage.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "os_io_seproxyhal.h"
#include "apdu_constants.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"
#include "common_ui.h"

unsigned int io_seproxyhal_touch_signMessage_ok(void) {
Expand Down
2 changes: 1 addition & 1 deletion src_features/signMessageEIP712_common/common_712.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "shared_context.h"
#include "apdu_constants.h"
#include "os_io_seproxyhal.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"
#include "ui_callbacks.h"
#include "common_712.h"
#include "ui_callbacks.h"
Expand Down
2 changes: 1 addition & 1 deletion src_features/signTx/logic_signTx.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "common_ui.h"
#include "ui_callbacks.h"
#include "apdu_constants.h"
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"

#define ERR_SILENT_MODE_CHECK_FAILED 0x6001

Expand Down
2 changes: 1 addition & 1 deletion src_features/signTx/ui_common_signTx.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "lib_standard_app/crypto_helpers.h"
#include "crypto_helpers.h"
#include "os_io_seproxyhal.h"
#include "shared_context.h"
#include "common_utils.h"
Expand Down

0 comments on commit 2df3eb5

Please sign in to comment.