Procházet zdrojové kódy

Add sanity-check for MOTHERBOARD

Scott Lahteine před 6 roky
rodič
revize
bbf80440bf
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3
    1
      Marlin/src/inc/SanityCheck.h

+ 3
- 1
Marlin/src/inc/SanityCheck.h Zobrazit soubor

@@ -54,7 +54,9 @@
54 54
 /**
55 55
  * Warnings for old configurations
56 56
  */
57
-#if !defined(X_BED_SIZE) || !defined(Y_BED_SIZE)
57
+#ifndef MOTHERBOARD
58
+  #error "MOTHERBOARD is required. Please update your configuration."
59
+#elif !defined(X_BED_SIZE) || !defined(Y_BED_SIZE)
58 60
   #error "X_BED_SIZE and Y_BED_SIZE are now required! Please update your configuration."
59 61
 #elif WATCH_TEMP_PERIOD > 500
60 62
   #error "WATCH_TEMP_PERIOD now uses seconds instead of milliseconds."

Loading…
Zrušit
Uložit