From 76b74b6eed1f452352c552da278d98485afa4d78 Mon Sep 17 00:00:00 2001 From: GroM Date: Tue, 4 Feb 2025 14:49:05 +0100 Subject: [PATCH] Exclude Nano S --- ledger_secure_sdk_sys/src/c/src.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ledger_secure_sdk_sys/src/c/src.c b/ledger_secure_sdk_sys/src/c/src.c index f1da0190..74cbadab 100644 --- a/ledger_secure_sdk_sys/src/c/src.c +++ b/ledger_secure_sdk_sys/src/c/src.c @@ -279,6 +279,7 @@ void c_boot_std() { io_seproxyhal_spi_send(c, 4); #endif +#ifndef TARGET_NANOS // Warn UX layer of io reset to avoid unwanted pin lock memset(&G_ux_params, 0, sizeof(G_ux_params)); G_ux_params.ux_id = BOLOS_UX_IO_RESET; @@ -291,6 +292,7 @@ void c_boot_std() { break; } } +#endif #ifdef HAVE_BLE unsigned int plane = G_io_app.plane_mode;