We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddeb876 commit f382334Copy full SHA for f382334
src/board_controller/ant_neuro/ant_neuro.cpp
@@ -281,7 +281,9 @@ void AntNeuroBoard::read_thread ()
281
}
282
std::this_thread::sleep_for (std::chrono::milliseconds (1));
283
if (impedance_mode) {
284
- std::this_thread::sleep_for (std::chrono::milliseconds (500)); // some more sleep; twice every second should be more than enough
+ // 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));
287
288
289
catch (...)
0 commit comments