diff --git a/core/embed/prodtest/.changelog.d/3932.fixed b/core/embed/prodtest/.changelog.d/3932.fixed new file mode 100644 index 0000000000..242fda1813 --- /dev/null +++ b/core/embed/prodtest/.changelog.d/3932.fixed @@ -0,0 +1 @@ +Fix TOUCH_VERSION command diff --git a/core/embed/prodtest/main.c b/core/embed/prodtest/main.c index b4209ac718..2712703d1e 100644 --- a/core/embed/prodtest/main.c +++ b/core/embed/prodtest/main.c @@ -391,8 +391,10 @@ static void test_sensitivity(const char *args) { } static void touch_version(void) { + touch_power_on(); uint8_t version = touch_get_version(); vcp_println("OK %d", version); + touch_power_off(); } #endif