Improve FilamentAction comments

This commit is contained in:
Yuri D'Elia 2022-12-13 13:42:34 +01:00 committed by Guðni Már Gilbert
parent 074b5d380f
commit 3485c20464
1 changed files with 4 additions and 4 deletions

View File

@ -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;