From 100d0a42c473d984c6a3b205c3c61c1747baa48b Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Tue, 20 Oct 2020 18:15:33 +0200 Subject: [PATCH] Add BMG for MEGA X --- Marlin/Configuration.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 11dfaa0b..54a262f2 100755 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -963,12 +963,16 @@ #endif #if ENABLED(KNUTWURST_MEGA_S) - #define DEFAULT_MAX_FEEDRATE { 500, 500, 6, 30 } + #define DEFAULT_MAX_FEEDRATE { 500, 500, 6, 30 } // same feedrate for BMG #endif #if ENABLED(KNUTWURST_MEGA_X) - #define DEFAULT_MAX_FEEDRATE { 120, 120, 18, 80 } // thanks to Simon Geis - //#define DEFAULT_MAX_FEEDRATE { 400, 400, 18, 80 } // thanks to DanJunior78 + #if ENABLED(KNUTWURST_BMG) + #define DEFAULT_MAX_FEEDRATE { 120, 120, 18, 30 } // correct for BMG? + #else + #define DEFAULT_MAX_FEEDRATE { 120, 120, 18, 80 } // thanks to Simon Geis + //#define DEFAULT_MAX_FEEDRATE { 400, 400, 18, 80 } // thanks to DanJunior78 + #endif #endif #if ENABLED(KNUTWURST_MEGA_P)