Initial split-up of G-code handlers by category
This commit is contained in:
@@ -341,15 +341,4 @@ class I2CPositionEncodersMgr {
|
||||
|
||||
extern I2CPositionEncodersMgr I2CPEM;
|
||||
|
||||
FORCE_INLINE static void gcode_M860() { I2CPEM.M860(); }
|
||||
FORCE_INLINE static void gcode_M861() { I2CPEM.M861(); }
|
||||
FORCE_INLINE static void gcode_M862() { I2CPEM.M862(); }
|
||||
FORCE_INLINE static void gcode_M863() { I2CPEM.M863(); }
|
||||
FORCE_INLINE static void gcode_M864() { I2CPEM.M864(); }
|
||||
FORCE_INLINE static void gcode_M865() { I2CPEM.M865(); }
|
||||
FORCE_INLINE static void gcode_M866() { I2CPEM.M866(); }
|
||||
FORCE_INLINE static void gcode_M867() { I2CPEM.M867(); }
|
||||
FORCE_INLINE static void gcode_M868() { I2CPEM.M868(); }
|
||||
FORCE_INLINE static void gcode_M869() { I2CPEM.M869(); }
|
||||
|
||||
#endif //I2CPOSENC_H
|
||||
|
@@ -30,8 +30,6 @@
|
||||
#include "../libs/duration_t.h"
|
||||
#include "../module/stepper_indirection.h"
|
||||
|
||||
#include <TMC2130Stepper.h>
|
||||
|
||||
#ifdef AUTOMATIC_CURRENT_CONTROL
|
||||
bool auto_current_control = 0;
|
||||
#endif
|
||||
|
@@ -23,8 +23,16 @@
|
||||
#ifndef _TMC2130_H_
|
||||
#define _TMC2130_H_
|
||||
|
||||
#include <TMC2130Stepper.h>
|
||||
|
||||
#include "../inc/MarlinConfig.h"
|
||||
|
||||
extern bool auto_current_control;
|
||||
|
||||
void tmc2130_checkOverTemp(void);
|
||||
|
||||
#if ENABLED(SENSORLESS_HOMING)
|
||||
void tmc2130_sensorless_homing(TMC2130Stepper &st, bool enable=true);
|
||||
#endif
|
||||
|
||||
#endif // _TMC2130_H_
|
||||
|
Reference in New Issue
Block a user