Explorar el Código

initial message not shown on release candidate versions

PavelSindler hace 7 años
padre
commit
4843f2c48e
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      Firmware/Configuration.h
  2. 1 1
      Firmware/Marlin_main.cpp

+ 1 - 1
Firmware/Configuration.h

@@ -9,7 +9,7 @@
 
 // Firmware version
 #define FW_VERSION "3.1.1-RC5"
-#define FW_COMMIT_NR   148
+#define FW_COMMIT_NR   149
 #define FW_DEV_VERSION FW_VERSION_RC
 #define FW_VERSION_FULL FW_VERSION "-" STR(FW_COMMIT_NR)
 

+ 1 - 1
Firmware/Marlin_main.cpp

@@ -887,7 +887,7 @@ void factory_reset()
 }
 
 void show_fw_version_warnings() {
-	if (FW_DEV_VERSION == FW_VERSION_GOLD) return;
+	if (FW_DEV_VERSION == FW_VERSION_GOLD || FW_DEV_VERSION == FW_VERSION_RC) return;
 	switch (FW_DEV_VERSION) {
 	case(FW_VERSION_ALPHA): lcd_show_fullscreen_message_and_wait_P(MSG_FW_VERSION_ALPHA); break;
 	case(FW_VERSION_BETA): lcd_show_fullscreen_message_and_wait_P(MSG_FW_VERSION_BETA); break;