Use bit-size typedefs for some stepper vars

This commit is contained in:
Scott Lahteine
2016-08-30 14:19:49 -05:00
parent d554c1dda8
commit 08f717e5f7
2 changed files with 10 additions and 10 deletions

View File

@ -102,7 +102,7 @@ class Stepper {
// Counter variables for the Bresenham line tracer
static long counter_X, counter_Y, counter_Z, counter_E;
static volatile unsigned long step_events_completed; // The number of step events executed in the current block
static volatile uint32_t step_events_completed; // The number of step events executed in the current block
#if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
static unsigned char old_OCR0A;