removed '!' signalization when accel/feedrate limits reached
This commit is contained in:
parent
310751397c
commit
4e32fb7181
1 changed files with 2 additions and 1 deletions
|
@ -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("% "));
|
||||||
|
|
Loading…
Reference in a new issue