Force high power mode when in farm mode
This commit is contained in:
parent
e4b7219239
commit
d2bcdec300
@ -1017,7 +1017,7 @@ void digipot_init() //Initialize Digipot Motor Current
|
||||
pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT);
|
||||
pinMode(MOTOR_CURRENT_PWM_Z_PIN, OUTPUT);
|
||||
pinMode(MOTOR_CURRENT_PWM_E_PIN, OUTPUT);
|
||||
if(SilentMode == 0){
|
||||
if((SilentMode == 0) || (farm_mode) ){
|
||||
|
||||
motor_current_setting[0] = motor_current_setting_loud[0];
|
||||
motor_current_setting[1] = motor_current_setting_loud[1];
|
||||
|
@ -2147,7 +2147,7 @@ static void lcd_settings_menu()
|
||||
MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
|
||||
}
|
||||
|
||||
if (SilentModeMenu == 0) {
|
||||
if ((SilentModeMenu == 0) || (farm_mode) ) {
|
||||
MENU_ITEM(function, MSG_SILENT_MODE_OFF, lcd_silent_mode_set);
|
||||
} else {
|
||||
MENU_ITEM(function, MSG_SILENT_MODE_ON, lcd_silent_mode_set);
|
||||
|
Loading…
Reference in New Issue
Block a user