Skip to content

Commit 704ea33

Browse files
committed
Remove regularly printing the task information.
Task information can be retrieved via serial command line. For example using list
1 parent cf7e909 commit 704ea33

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/main.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ void loop()
3434

3535
serial_port::readAndHandleInput();
3636

37-
for (auto task : device::tasks)
38-
{
39-
serial_port::cout << task.second.getLabel() << " : " << std::boolalpha << task.second.isRunning()
40-
<< std::noboolalpha << " with " << task.second.getRecordedDuration().count() << " s" << std::endl;
41-
}
42-
serial_port::cout << "_\r" << std::endl;
43-
4437
std::this_thread::yield();
4538
using namespace std::chrono_literals;
4639
std::this_thread::sleep_for(100ms);

0 commit comments

Comments
 (0)