From 43fa92d95370a9be59af8c17bd131ad01dd34546 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Wed, 6 Mar 2024 16:34:47 +0100 Subject: [PATCH] fix(docs): fix prodtest SBU command documentation [no changelog] --- core/embed/prodtest/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/prodtest/README.md b/core/embed/prodtest/README.md index 35afc352b8..686efa49a6 100644 --- a/core/embed/prodtest/README.md +++ b/core/embed/prodtest/README.md @@ -150,13 +150,13 @@ OK ### SBU The `SBU` command allows you to set the states of SBU1 and SBU2 pins. -It takes two input parameters, each representing the state of one pin (0 or 1), and sets the corresponding output pins accordingly. +It takes one input parameter, representing the state of both pins (00, 01, 10 or 11), and sets the corresponding output pins accordingly. Example: ``` // sets SBU1 <- 1, SBU2 <- 0 -SBU 1 0 +SBU 10 OK ```