[2.0.x] HAL timer set/get count => set/get compare (#9581)

To reduce confusion over the current timer count vs. the compare (aka "top") value. Caution: this re-uses the function name, changing its meaning.
This commit is contained in:
Scott Lahteine
2018-02-10 20:42:00 -06:00
committed by GitHub
parent 7a4029d1b1
commit 03d790451f
10 changed files with 65 additions and 65 deletions

View File

@ -108,7 +108,7 @@ class Stepper {
// i.e., the current amount of pressure applied
// to the spring (=filament).
#else
#define _NEXT_ISR(T) HAL_timer_set_count(STEP_TIMER_NUM, T);
#define _NEXT_ISR(T) HAL_timer_set_compare(STEP_TIMER_NUM, T);
#endif // LIN_ADVANCE
static long acceleration_time, deceleration_time;