Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanVolvenkov committed Sep 9, 2024
1 parent 1c1336f commit c7e34b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ void Run(Antilatency::HardwareExtensionInterface::ICotask cotask, IOPins conf, s

while (!cotask.isTaskFinished()) {
std::cout << "Side: " << side << std::endl
<< "HAxis: " << std::fixed << std::setprecision(2) << std::setw(4) << std::right << std::round(hAxis.getValue() * 100.0) / 100.0
<< " VAxis: " << std::setw(4) << std::right << std::round(vAxis.getValue() * 100.0) / 100.0
<< "hAxis: " << std::fixed << std::setprecision(2) << std::setw(4) << std::right << std::round(hAxis.getValue() * 100.0) / 100.0
<< " vAxis: " << std::setw(4) << std::right << std::round(vAxis.getValue() * 100.0) / 100.0
<< " func1: " << std::setw(4) << std::right << Antilatency::enumToString(func1.getState())
<< " func2: " << std::setw(4) << std::right << Antilatency::enumToString(func2.getState())
<< " click: " << std::setw(4) << std::right << Antilatency::enumToString(click.getState()) << std::endl;
Expand Down

0 comments on commit c7e34b7

Please sign in to comment.