Improve FilamentAction comments
This commit is contained in:
parent
074b5d380f
commit
3485c20464
|
|
@ -175,17 +175,17 @@ void lcd_hw_setup_menu(void); // NOT static due to using ins
|
||||||
|
|
||||||
enum class FilamentAction : uint_least8_t
|
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,
|
Load,
|
||||||
AutoLoad,
|
AutoLoad, // triggered by insertion, cancellable until it transitions to Load
|
||||||
UnLoad,
|
UnLoad,
|
||||||
MmuLoad,
|
MmuLoad,
|
||||||
MmuUnLoad,
|
MmuUnLoad,
|
||||||
MmuEject,
|
MmuEject,
|
||||||
MmuCut,
|
MmuCut,
|
||||||
MmuLoadingTest,
|
MmuLoadingTest,
|
||||||
Preheat,
|
Preheat, // triggered by preheat (cancellable)
|
||||||
Lay1Cal,
|
Lay1Cal, // triggered by 1st layer calibration (cancellable)
|
||||||
};
|
};
|
||||||
|
|
||||||
extern FilamentAction eFilamentAction;
|
extern FilamentAction eFilamentAction;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue