From a6b8d73044dd2c3551ff1dd918f5e494bf7acb1a Mon Sep 17 00:00:00 2001 From: Simen Svale Skogsrud Date: Fri, 5 Mar 2010 08:38:01 +0100 Subject: [PATCH] removed a warning --- stepper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepper.c b/stepper.c index 47242b3..22e5996 100644 --- a/stepper.c +++ b/stepper.c @@ -50,7 +50,7 @@ uint8_t out_bits; // The next stepping-bits to be output struct Line *current_line; // A pointer to the line currently being traced volatile int32_t counter_x, counter_y, counter_z; // counter variables for the bresenham line tracer uint32_t iterations; // The number of iterations left to complete the current_line -volatile busy; // TRUE when SIG_OUTPUT_COMPARE1A is being serviced. Used to avoid retriggering that handler. +volatile int busy; // TRUE when SIG_OUTPUT_COMPARE1A is being serviced. Used to avoid retriggering that handler. void config_step_timer(uint32_t microseconds);