From ee13872e90bc86ec8940da71853107b531ae0b49 Mon Sep 17 00:00:00 2001 From: cepetr Date: Mon, 10 Feb 2025 13:32:41 +0100 Subject: [PATCH] fix(prodtest): remove haptic-test duration limit [no changelog] --- core/embed/projects/prodtest/cmd/prodtest_haptic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/projects/prodtest/cmd/prodtest_haptic.c b/core/embed/projects/prodtest/cmd/prodtest_haptic.c index c85a6214d5..4281911bab 100644 --- a/core/embed/projects/prodtest/cmd/prodtest_haptic.c +++ b/core/embed/projects/prodtest/cmd/prodtest_haptic.c @@ -27,8 +27,8 @@ static void prodtest_haptic_test(cli_t* cli) { uint32_t duration = 0; // ms - if (!cli_arg_uint32(cli, "duration", &duration) || duration > 5000) { - cli_error_arg(cli, "Expecting time in milliseconds in range 0-5000."); + if (!cli_arg_uint32(cli, "duration", &duration)) { + cli_error_arg(cli, "Expecting time in milliseconds."); return; }