Browse Source

Fix up ubl_motion indentation

pull/1/head
Scott Lahteine 7 years ago
parent
commit
d568e586b7
  1. 22
      Marlin/src/feature/bedlevel/ubl/ubl_motion.cpp

22
Marlin/src/feature/bedlevel/ubl/ubl_motion.cpp

@ -23,23 +23,23 @@
#if ENABLED(AUTO_BED_LEVELING_UBL)
#include "../bedlevel.h"
#include "../../../module/planner.h"
#include "../../../module/stepper.h"
#include "../../../module/motion.h"
#include "../bedlevel.h"
#include "../../../module/planner.h"
#include "../../../module/stepper.h"
#include "../../../module/motion.h"
#if ENABLED(DELTA)
#if ENABLED(DELTA)
#include "../../../module/delta.h"
#endif
#endif
#include "../../../Marlin.h"
#include <math.h>
#include "../../../Marlin.h"
#include <math.h>
#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 set_current_from_destination() { COPY(current_position, destination); }
#else
#else
extern void set_current_from_destination();
#endif
#endif
#if !UBL_SEGMENTED

Loading…
Cancel
Save