fix(core/prodtest): fix default backlight settings.
What changed, and why it matters
This commit adjusts the default screen brightness for the Trezor T3W1 model during production testing. It changes one number in a factory test program from 85 to 155, matching other models. There is no security issue visible in this change.
No security action needed. Treat as a normal hardware-testing configuration fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In core/embed/projects/prodtest/main.c, the default backlight level for TREZOR_MODEL_T3W1 in prodtest_main() is raised from 85 to 155. The else branch already uses 150. This is a one-line configuration fix in a production-test firmware image, not in the user-facing wallet firmware.
Changed components
core/embed/projects/prodtest/main.cInspect captured patch +1 / −1
diff --git a/core/embed/projects/prodtest/main.c b/core/embed/projects/prodtest/main.c
index b3745fd56..2dd8cd1c1 100644
--- a/core/embed/projects/prodtest/main.c
+++ b/core/embed/projects/prodtest/main.c
@@ -250,7 +250,7 @@ int prodtest_main(void) {
#endif
#ifdef TREZOR_MODEL_T3W1
- display_set_backlight(85);
+ display_set_backlight(155);
#else
display_set_backlight(150);
#endif
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.