Browse Source

Remove references to marlinfirmware.org

The domain is gone and doesn’t redirect, so for now show no URL on the boot screen.
Scott Lahteine 8 years ago
parent
commit
be691b51f1
2 changed files with 6 additions and 2 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 5
    1
      Marlin/ultralcd_implementation_hitachi_HD44780.h

+ 1
- 1
Marlin/Marlin_main.cpp View File

74
  *  - http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
74
  *  - http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
75
  *
75
  *
76
  * Help us document these G-codes online:
76
  * Help us document these G-codes online:
77
- *  - http://marlinfirmware.org/index.php/G-Code
77
+ *  - https://github.com/MarlinFirmware/Marlin/wiki/G-Code-in-Marlin
78
  *  - http://reprap.org/wiki/G-code
78
  *  - http://reprap.org/wiki/G-code
79
  *
79
  *
80
  * -----------------
80
  * -----------------

+ 5
- 1
Marlin/ultralcd_implementation_hitachi_HD44780.h View File

414
 unsigned lcd_print(char c) { return charset_mapper(c); }
414
 unsigned lcd_print(char c) { return charset_mapper(c); }
415
 
415
 
416
 #if ENABLED(SHOW_BOOTSCREEN)
416
 #if ENABLED(SHOW_BOOTSCREEN)
417
+
417
   void lcd_erase_line(int line) {
418
   void lcd_erase_line(int line) {
418
     lcd.setCursor(0, 3);
419
     lcd.setCursor(0, 3);
419
     for (int i = 0; i < LCD_WIDTH; i++)
420
     for (int i = 0; i < LCD_WIDTH; i++)
486
     lcd.setCursor(TEXT_SCREEN_LOGO_SHIFT, 1);                    lcd_printPGM(PSTR("|Marlin|"));
487
     lcd.setCursor(TEXT_SCREEN_LOGO_SHIFT, 1);                    lcd_printPGM(PSTR("|Marlin|"));
487
     lcd.setCursor(TEXT_SCREEN_LOGO_SHIFT, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" ));  lcd.print('\x03');
488
     lcd.setCursor(TEXT_SCREEN_LOGO_SHIFT, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" ));  lcd.print('\x03');
488
 
489
 
489
-    lcd_scroll(0, 3, PSTR("marlinfirmware.org"), LCD_WIDTH, 3000);
490
+    delay(2000);
490
 
491
 
491
     #ifdef STRING_SPLASH_LINE1
492
     #ifdef STRING_SPLASH_LINE1
492
       lcd_erase_line(3);
493
       lcd_erase_line(3);
493
       lcd_scroll(0, 3, PSTR(STRING_SPLASH_LINE1), LCD_WIDTH, 1000);
494
       lcd_scroll(0, 3, PSTR(STRING_SPLASH_LINE1), LCD_WIDTH, 1000);
494
     #endif
495
     #endif
496
+
495
     #ifdef STRING_SPLASH_LINE2
497
     #ifdef STRING_SPLASH_LINE2
496
       lcd_erase_line(3);
498
       lcd_erase_line(3);
497
       lcd_scroll(0, 3, PSTR(STRING_SPLASH_LINE2), LCD_WIDTH, 1000);
499
       lcd_scroll(0, 3, PSTR(STRING_SPLASH_LINE2), LCD_WIDTH, 1000);
498
     #endif
500
     #endif
499
   }
501
   }
502
+
500
 #endif // SHOW_BOOTSCREEN
503
 #endif // SHOW_BOOTSCREEN
504
+
501
 /*
505
 /*
502
 Possible status screens:
506
 Possible status screens:
503
 16x2   |000/000 B000/000|
507
 16x2   |000/000 B000/000|

Loading…
Cancel
Save