itersolve: Rename scan_pre/_post to gen_steps_pre/post_active

Rename the variables to make it a little more clear what they do.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2019-12-10 15:53:50 -05:00
parent cff24b0220
commit 04b3603a1e
3 changed files with 10 additions and 9 deletions

View File

@@ -4,7 +4,7 @@
#include <stdint.h> // int32_t
enum {
AF_X = 1 << 0, AF_Y = 1 << 1, AF_Z = 1 <<2,
AF_X = 1 << 0, AF_Y = 1 << 1, AF_Z = 1 << 2,
};
struct stepper_kinematics;
@@ -17,9 +17,9 @@ struct stepper_kinematics {
struct stepcompress *sc;
double last_flush_time, last_move_time;
double scan_past, scan_future;
struct trapq *tq;
int active_flags;
double gen_steps_pre_active, gen_steps_post_active;
sk_calc_callback calc_position_cb;
sk_post_callback post_cb;