Merge remote-tracking branch 'upstream/master' into edge
[clinton/Smoothieware.git] / src / modules / tools / endstops / Endstops.h
index cebcc1e..332a200 100644 (file)
@@ -9,75 +9,48 @@
 #define ENDSTOPS_MODULE_H
 
 #include "libs/Module.h"
-#include "libs/Kernel.h"
-#include "modules/communication/utils/Gcode.h"
-#include "libs/StepperMotor.h"
 #include "libs/Pin.h"
 
-#define ALPHA_AXIS 0
-#define BETA_AXIS  1
-#define GAMMA_AXIS 2
-
-#define NOT_HOMING 0
-#define MOVING_TO_ORIGIN_FAST 1
-#define MOVING_BACK 2
-#define MOVING_TO_ORIGIN_SLOW 3
-
-#define alpha_min_endstop_checksum       28684
-#define beta_min_endstop_checksum        23457
-#define gamma_min_endstop_checksum       16137
-
-#define alpha_max_endstop_checksum       31246
-#define beta_max_endstop_checksum        26019
-#define gamma_max_endstop_checksum       18699
-
-#define alpha_fast_homing_rate_checksum  19720
-#define beta_fast_homing_rate_checksum   9373
-#define gamma_fast_homing_rate_checksum  3333
-
-#define alpha_slow_homing_rate_checksum  45599
-#define beta_slow_homing_rate_checksum   35252
-#define gamma_slow_homing_rate_checksum  29212
-
-#define alpha_homing_retract_checksum    4419
-#define beta_homing_retract_checksum     48344
-#define gamma_homing_retract_checksum    54848
-#define endstop_debounce_count_checksum  25394
+#include <bitset>
 
+class StepperMotor;
 
 class Endstops : public Module{
-    private:
-        void wait_for_homed(char axes_to_move);
-
     public:
         Endstops();
         void on_module_loaded();
         void on_gcode_received(void* argument);
         void on_config_reload(void* argument);
+        uint32_t acceleration_tick(uint32_t dummy);
+
+    private:
+        void do_homing(char axes_to_move);
+        void do_homing_corexy(char axes_to_move);
+        void wait_for_homed(char axes_to_move);
+        void wait_for_homed_corexy(int axis);
+        void corexy_home(int home_axis, bool dirx, bool diry, float fast_rate, float slow_rate, unsigned int retract_steps);
+        void back_off_home();
+        void on_get_public_data(void* argument);
+        void on_set_public_data(void* argument);
+        void on_idle(void *argument);
+
+        float homing_position[3];
+        float home_offset[3];
+        std::bitset<3> home_direction;
+        std::bitset<3> limit_enable;
 
-        StepperMotor* steppers[3];
-        Pin*          pins[6];
-        double  slow_rates[3];
-        double  fast_rates[3];
-        unsigned int  retract_steps[3];
         unsigned int  debounce_count;
+        float  retract_mm[3];
+        float  trim_mm[3];
+        float  fast_rates[3];
+        float  slow_rates[3];
+        float  feed_rate[3];
+        Pin    pins[6];
         char status;
+        struct {
+            bool is_corexy:1;
+            bool is_delta:1;
+        };
 };
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 #endif