🎨 MULTI_MANUAL => MULTI_E_MANUAL

This commit is contained in:
Scott Lahteine
2021-05-20 17:12:18 -05:00
parent 781b34709b
commit 000388b1d9
6 changed files with 15 additions and 15 deletions

View File

@@ -48,7 +48,7 @@
#endif
#if E_MANUAL > 1
#define MULTI_MANUAL 1
#define MULTI_E_MANUAL 1
#endif
#if HAS_DISPLAY
@@ -129,7 +129,7 @@
class ManualMove {
private:
static AxisEnum axis;
#if MULTI_MANUAL
#if MULTI_E_MANUAL
static int8_t e_index;
#else
static int8_t constexpr e_index = 0;
@@ -183,7 +183,7 @@
#endif
static void task();
static void soon(const AxisEnum axis
#if MULTI_MANUAL
#if MULTI_E_MANUAL
, const int8_t eindex=-1
#endif
);