From e5e1db4c8eef4de824b5fbb2512f28361275077c Mon Sep 17 00:00:00 2001 From: John Date: Sun, 28 Nov 2021 16:04:10 +0100 Subject: [PATCH] new arbitration delay factor and range, corrected unit --- src/tools/ebuspicloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/ebuspicloader.cpp b/src/tools/ebuspicloader.cpp index fc75d8c9..832346ff 100644 --- a/src/tools/ebuspicloader.cpp +++ b/src/tools/ebuspicloader.cpp @@ -893,7 +893,7 @@ void readSettings(int fd) { std::cout << std::endl; */ } - uint16_t arbitrationDelay = configData[3]&0x0f; + uint16_t arbitrationDelay = configData[3]&0x3f; std::cout << "Arbitration delay: "; if (arbitrationDelay==0x3f) { std::cout << "200 us (default)" << std::endl;