Fix broken #ifdef
Fix declarations in .h file
This commit is contained in:
parent
88b8df4a86
commit
f4944f6d8e
2 changed files with 3 additions and 2 deletions
|
|
@ -18,7 +18,8 @@ void ClearToSend();
|
||||||
|
|
||||||
void get_coordinates();
|
void get_coordinates();
|
||||||
void prepare_move();
|
void prepare_move();
|
||||||
void linear_move(unsigned long x_steps_remaining, unsigned long y_steps_remaining, unsigned long z_steps_remaining, unsigned long e_steps_remaining);
|
void linear_move(unsigned long steps_remaining[]);
|
||||||
|
void do_step_update_micros(int axis);
|
||||||
void disable_x();
|
void disable_x();
|
||||||
void disable_y();
|
void disable_y();
|
||||||
void disable_z();
|
void disable_z();
|
||||||
|
|
|
||||||
|
|
@ -450,7 +450,7 @@ inline void process_commands()
|
||||||
{
|
{
|
||||||
case 0: // G0 -> G1
|
case 0: // G0 -> G1
|
||||||
case 1: // G1
|
case 1: // G1
|
||||||
#ifdef DISABLE_CHECK_DURING_ACC || DISABLE_CHECK_DURING_MOVE || DISABLE_CHECK_DURING_TRAVEL
|
#if (defined DISABLE_CHECK_DURING_ACC) || (defined DISABLE_CHECK_DURING_MOVE) || (defined DISABLE_CHECK_DURING_TRAVEL)
|
||||||
manage_heater();
|
manage_heater();
|
||||||
#endif
|
#endif
|
||||||
get_coordinates(); // For X Y Z E F
|
get_coordinates(); // For X Y Z E F
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue