Prusa3d Marlin fork
mmu2_state.h
1 
5 #pragma once
6 #include <stdint.h>
7 namespace MMU2 {
15 enum class xState : uint_fast8_t {
16  Active,
17  Connecting,
18  Stopped
19 };
20 
21 } // namespace MMU2
New MMU2 protocol logic.
Definition: mmu2.cpp:26
xState
Definition: mmu2_state.h:15
@ Active
MMU has been detected, connected, communicates and is ready to be worked with.
@ Stopped
The user doesn't want the printer to work with the MMU. The MMU itself is not powered and does not wo...
@ Connecting
MMU is connected but it doesn't communicate (yet). The user wants the MMU, but it is not ready to be ...