From 1fb9f8ccd5597567e960ae436c177107994ee40e Mon Sep 17 00:00:00 2001 From: "Johannes Schriewer (Dunkelstern)" Date: Sun, 17 Nov 2013 16:22:57 +0100 Subject: [PATCH] Missing member variable for lookahead in DDA struct. --- dda.h | 1 + 1 file changed, 1 insertion(+) diff --git a/dda.h b/dda.h index fca7cfb..1a4ebe2 100644 --- a/dda.h +++ b/dda.h @@ -146,6 +146,7 @@ typedef struct { // With the look-ahead functionality, it is possible to retain physical // movement between G1 moves. These variables keep track of the entry and // exit speeds between moves. + uint32_t crossF; uint32_t F_start; uint32_t start_steps; ///< steps to reach F_start uint32_t F_end;