🐛 Fix laser/fan sync (#24460)

Followup to #22690, 307dfb15
This commit is contained in:
Mike La Spina
2022-07-08 15:02:12 -05:00
committed by Scott Lahteine
parent 0c78a6f657
commit 24c211307d
2 changed files with 3 additions and 3 deletions

View File

@ -542,7 +542,7 @@ class MenuItem_bool : public MenuEditItemBase {
inline void on_fan_update() {
thermalManager.set_fan_speed(MenuItemBase::itemIndex, editable.uint8);
TERN_(LASER_SYNCHRONOUS_M106_M107, planner.buffer_sync_block(BLOCK_FLAG_SYNC_FANS));
TERN_(LASER_SYNCHRONOUS_M106_M107, planner.buffer_sync_block(BLOCK_BIT_SYNC_FANS));
}
#if ENABLED(EXTRA_FAN_SPEED)