Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Dec 8, 2024
1 parent 1190e33 commit 3306ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/buses/bus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ bool Bus::WaitSignal(int pin, bool state)
spdlog::warn("Received RST signal during {} phase, aborting", GetPhaseName(GetPhase()));
return false;
}
} while ((chrono::duration_cast < chrono::seconds > (chrono::steady_clock::now() - now).count()) < 3);
} while ((chrono::duration_cast<chrono::seconds>(chrono::steady_clock::now() - now).count()) < 3);

spdlog::trace("Timeout while waiting for ACK/REQ to change to {}", state ? "true" : "false");

Expand Down

0 comments on commit 3306ebb

Please sign in to comment.