Adding PWM_MOTOR_CURRENT flag to help expose PWM_MOTOR_CURRENTS in Configuration_adv.h similar to DIGIPOT_MOTOR_CURRENT

This commit is contained in:
Elijah Snyder
2016-01-07 11:05:30 -06:00
committed by Scott Lahteine
parent 7bb7ac8353
commit e8b10d2836
2 changed files with 7 additions and 1 deletions

View File

@ -88,7 +88,10 @@ static volatile char endstop_hit_bits = 0; // use X_MIN, Y_MIN, Z_MIN and Z_MIN_
#endif
#if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
int motor_current_setting[3] = DEFAULT_PWM_MOTOR_CURRENT;
#ifndef PWM_MOTOR_CURRENT
#define PWM_MOTOR_CURRENT DEFAULT_PWM_MOTOR_CURRENT
#endif
int motor_current_setting[3] = PWM_MOTOR_CURRENT;
#endif
static bool check_endstops = true;