From a5a9b2cf4cff79a5e0076867bb8f29dabc1aaf30 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 28 Nov 2021 16:03:00 +0100 Subject: [PATCH] new arbitration delay factor and range, corrected unit --- src/tools/ebuspicloader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/ebuspicloader.cpp b/src/tools/ebuspicloader.cpp index 65b9fa61..fc75d8c9 100644 --- a/src/tools/ebuspicloader.cpp +++ b/src/tools/ebuspicloader.cpp @@ -895,8 +895,8 @@ void readSettings(int fd) { } uint16_t arbitrationDelay = configData[3]&0x0f; std::cout << "Arbitration delay: "; - if (arbitrationDelay==0x0f) { - std::cout << "100 us (default)" << std::endl; + if (arbitrationDelay==0x3f) { + std::cout << "200 us (default)" << std::endl; } else { arbitrationDelay *= 10; // steps of 10us std::cout << std::dec << static_cast(arbitrationDelay) << " us" << std::endl;