Merge pull request #7201 from Bob-the-Kuhn/intermittent_Teensy2++_G26_compile_issue
intermittent AT90USB & G26 compile problem (proposal)
This commit is contained in:
commit
009a6104c5
|
@ -135,12 +135,13 @@
|
||||||
#endif
|
#endif
|
||||||
extern float destination[XYZE];
|
extern float destination[XYZE];
|
||||||
void set_destination_to_current();
|
void set_destination_to_current();
|
||||||
void set_current_to_destination();
|
|
||||||
void prepare_move_to_destination();
|
void prepare_move_to_destination();
|
||||||
#if AVR_AT90USB1286_FAMILY // Teensyduino & Printrboard IDE extensions have compile errors without this
|
#if AVR_AT90USB1286_FAMILY // Teensyduino & Printrboard IDE extensions have compile errors without this
|
||||||
inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
|
inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
|
||||||
|
inline void set_current_to_destination() { COPY(current_position, destination); }
|
||||||
#else
|
#else
|
||||||
void sync_plan_position_e();
|
void sync_plan_position_e();
|
||||||
|
void set_current_to_destination();
|
||||||
#endif
|
#endif
|
||||||
#if ENABLED(NEWPANEL)
|
#if ENABLED(NEWPANEL)
|
||||||
void lcd_setstatusPGM(const char* const message, const int8_t level);
|
void lcd_setstatusPGM(const char* const message, const int8_t level);
|
||||||
|
|
|
@ -31,7 +31,12 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
extern float destination[XYZE];
|
extern float destination[XYZE];
|
||||||
extern void set_current_to_destination();
|
|
||||||
|
#if AVR_AT90USB1286_FAMILY // Teensyduino & Printrboard IDE extensions have compile errors without this
|
||||||
|
inline void set_current_to_destination() { COPY(current_position, destination); }
|
||||||
|
#else
|
||||||
|
extern void set_current_to_destination();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DELTA)
|
#if ENABLED(DELTA)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue