Browse Source

Don't use board url as override

Scott Lahteine 6 years ago
parent
commit
b2a4b6f34e
2 changed files with 6 additions and 5 deletions
  1. 5
    4
      Marlin/src/core/language.h
  2. 1
    1
      Marlin/src/inc/Version.h

+ 5
- 4
Marlin/src/core/language.h View File

@@ -90,10 +90,11 @@
90 90
   #define MACHINE_UUID DEFAULT_MACHINE_UUID
91 91
 #endif
92 92
 
93
-#ifdef BOARD_WEBSITE_URL
94
-  #undef  WEBSITE_URL
95
-  #define WEBSITE_URL BOARD_WEBSITE_URL
96
-#endif
93
+#define MARLIN_WEBSITE_URL "http://marlinfw.org"
94
+
95
+//#if !defined(STRING_SPLASH_LINE3) && defined(WEBSITE_URL)
96
+//  #define STRING_SPLASH_LINE3 WEBSITE_URL
97
+//#endif
97 98
 
98 99
 #if HAS_GRAPHICAL_LCD
99 100
   //

+ 1
- 1
Marlin/src/inc/Version.h View File

@@ -90,7 +90,7 @@
90 90
 
91 91
   /**
92 92
    * The WEBSITE_URL is the location where users can get more information such as
93
-   * documentation about a specific Marlin release.
93
+   * documentation about a specific Marlin release. Displayed in the Info Menu.
94 94
    */
95 95
   #define WEBSITE_URL "http://marlinfw.org"
96 96
 

Loading…
Cancel
Save