removed '!' signalization when accel/feedrate limits reached

This commit is contained in:
Robert Pelnar 2018-08-08 20:23:13 +02:00
parent 310751397c
commit 4e32fb7181

View file

@ -604,12 +604,13 @@ static void lcd_implementation_status_screen()
//Print Feedrate //Print Feedrate
lcd_set_cursor(LCD_WIDTH - 8-2, 1); lcd_set_cursor(LCD_WIDTH - 8-2, 1);
lcd_puts_P(PSTR(" ")); lcd_puts_P(PSTR(" "));
/*
if (maxlimit_status) if (maxlimit_status)
{ {
maxlimit_status = 0; maxlimit_status = 0;
lcd_print('!'); lcd_print('!');
} }
else else*/
lcd_print(LCD_STR_FEEDRATE[0]); lcd_print(LCD_STR_FEEDRATE[0]);
lcd_print(itostr3(feedmultiply)); lcd_print(itostr3(feedmultiply));
lcd_puts_P(PSTR("% ")); lcd_puts_P(PSTR("% "));