From 001d3c7cbe693f09b0744630ba8416e6dd89a02d Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Fri, 15 Nov 2024 09:48:13 +0100 Subject: [PATCH] feat(core): allow touchless mode in T3W1 bootloader [no changelog] --- core/embed/projects/bootloader/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/projects/bootloader/main.c b/core/embed/projects/bootloader/main.c index 4cec472812..e4beeff043 100644 --- a/core/embed/projects/bootloader/main.c +++ b/core/embed/projects/bootloader/main.c @@ -369,8 +369,8 @@ int bootloader_main(void) { #ifdef USE_TOUCH secbool touch_initialized = secfalse; secbool allow_touchless_mode = secfalse; -#ifdef TREZOR_MODEL_T3T1 - // on T3T1, tester needs to run without touch, so making an exception +#if defined TREZOR_MODEL_T3T1 || defined TREZOR_MODEL_T3W1 + // on T3T1 and T3W1, tester needs to run without touch, so making an exception // until unit variant is written in OTP const secbool manufacturing_mode = unit_properties()->locked ? secfalse : sectrue;