Skip to content

Commit

Permalink
Merge pull request #810 from LedgerHQ/cherry_pick_5
Browse files Browse the repository at this point in the history
Fix error when setting `DISABLE_STANDARD_USB = 1` in standard app Makefile - cherry pick API_LEVEL_5
  • Loading branch information
apaillier-ledger authored Oct 21, 2024
2 parents a3475f1 + cd9c01c commit cfb1084
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib_standard_app/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ WEAK void common_app_init(void)

io_seproxyhal_init();

#ifdef HAVE_IO_USB
USB_power(0);
USB_power(1);
#endif

#ifdef HAVE_BLE
BLE_power(0, NULL);
Expand Down Expand Up @@ -83,7 +85,9 @@ WEAK void standalone_app_main(void)
// - the NanoX goes on battery power and display the lock screen
// - the user plug the NanoX instead of entering its pin
// - the device is frozen, battery should be removed
#ifdef HAVE_IO_USB
USB_power(0);
#endif
#ifdef HAVE_BLE
BLE_power(0, NULL);
#endif
Expand Down

0 comments on commit cfb1084

Please sign in to comment.