Skip to content

Commit e40fa42

Browse files
authored
Remove regularly printing the task information. (#132)
Task information can be retrieved via serial command line. The regular output is not necessary any more and makes it difficult to use the serial command line. For example using list
2 parents c1dbd6e + 704ea33 commit e40fa42

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

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)