From 77eeabf7f58f92873b870a44c8752a839e81b9f0 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Thu, 15 Aug 2024 11:44:33 +0200 Subject: [PATCH] fix(core/prodtest): fix expected param numbers for TOUCH_IDLE command [no changelog] --- core/embed/prodtest/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/prodtest/main.c b/core/embed/prodtest/main.c index d5215a7d3..436951619 100644 --- a/core/embed/prodtest/main.c +++ b/core/embed/prodtest/main.c @@ -454,7 +454,7 @@ static void test_touch_custom(const char *args) { } static void test_touch_idle(const char *args) { - static const int expected_params = 5; + static const int expected_params = 1; int num_params = 0; int params[expected_params];