Include M205 note in configurations

This commit is contained in:
Scott Lahteine
2016-12-07 14:45:44 -06:00
parent c8a95ec514
commit aa241c63b3
23 changed files with 27 additions and 5 deletions

View File

@ -393,11 +393,11 @@ class Planner {
#if ENABLED(ENSURE_SMOOTH_MOVES)
static bool long_move() {
if (blocks_queued()) {
return block_buffer_runtime_us > (LCD_UPDATE_THRESHOLD) * 1000UL + (MIN_BLOCK_TIME) * 3000UL;
}
else
return true;
if (blocks_queued()) {
return block_buffer_runtime_us > (LCD_UPDATE_THRESHOLD) * 1000UL + (MIN_BLOCK_TIME) * 3000UL;
}
else
return true;
}
static void clear_block_buffer_runtime(){