Przeglądaj źródła

Move the test to the experimental menu

.
Alex Voinea 3 lat temu
rodzic
commit
5c0d2767a8
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      Firmware/ultralcd.cpp

+ 4 - 4
Firmware/ultralcd.cpp

@@ -2073,10 +2073,6 @@ static void lcd_support_menu()
 #endif /* DEBUG_BUILD */
 
   #endif //MK1BP
-
-#ifdef DEBUG_PULLUP_CRASH
-  MENU_ITEM_FUNCTION_P(_n("Test Pullup Crash"), TestPullupCrash);
-#endif // DEBUG_PULLUP_CRASH
   MENU_END();
 }
 
@@ -9071,6 +9067,10 @@ void lcd_experimental_menu()
 #ifdef TMC2130
     MENU_ITEM_TOGGLE_P(_N("E-cool mode"), UserECoolEnabled()?_T(MSG_ON):_T(MSG_OFF), UserECool_toggle);////MSG_MENU_ECOOL c=18
 #endif
+    
+#ifdef DEBUG_PULLUP_CRASH
+    MENU_ITEM_FUNCTION_P(_N("Test Pullup Crash"), TestPullupCrash);
+#endif // DEBUG_PULLUP_CRASH
     MENU_END();
 }