Skip to content

Commit f382334

Browse files
committed
updated comment
1 parent ddeb876 commit f382334

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/board_controller/ant_neuro/ant_neuro.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,9 @@ void AntNeuroBoard::read_thread ()
281281
}
282282
std::this_thread::sleep_for (std::chrono::milliseconds (1));
283283
if (impedance_mode) {
284-
std::this_thread::sleep_for (std::chrono::milliseconds (500)); // some more sleep; twice every second should be more than enough
284+
// some more sleep; twice every second should be more than enough
285+
// if left out, it yields impedances at around 64 Hz
286+
std::this_thread::sleep_for (std::chrono::milliseconds (500));
285287
}
286288
}
287289
catch (...)

0 commit comments

Comments
 (0)