From 3485c2046484d6f622bb48a0319db7e3e1e87bf6 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Tue, 13 Dec 2022 13:42:34 +0100 Subject: [PATCH] Improve FilamentAction comments --- Firmware/ultralcd.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Firmware/ultralcd.h b/Firmware/ultralcd.h index 541215853..a2ae49cee 100755 --- a/Firmware/ultralcd.h +++ b/Firmware/ultralcd.h @@ -175,17 +175,17 @@ void lcd_hw_setup_menu(void); // NOT static due to using ins enum class FilamentAction : uint_least8_t { - None, //!< 'none' state is used as flag for (filament) autoLoad (i.e. opposite for 'autoLoad' state) + None, // no filament action is taking place Load, - AutoLoad, + AutoLoad, // triggered by insertion, cancellable until it transitions to Load UnLoad, MmuLoad, MmuUnLoad, MmuEject, MmuCut, MmuLoadingTest, - Preheat, - Lay1Cal, + Preheat, // triggered by preheat (cancellable) + Lay1Cal, // triggered by 1st layer calibration (cancellable) }; extern FilamentAction eFilamentAction;