refactor endstop bounce back after home for limits
[clinton/Smoothieware.git] / src / modules / tools / endstops / Endstops.h
1 /*
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8 #ifndef ENDSTOPS_MODULE_H
9 #define ENDSTOPS_MODULE_H
10
11 #include "libs/Module.h"
12 #include "libs/Pin.h"
13
14 #include <bitset>
15
16 class StepperMotor;
17
18 class Endstops : public Module{
19 public:
20 Endstops();
21 void on_module_loaded();
22 void on_gcode_received(void* argument);
23 void on_config_reload(void* argument);
24 void acceleration_tick(void);
25
26 private:
27 void home(char axes_to_move);
28 void do_homing_cartesian(char axes_to_move);
29 void do_homing_corexy(char axes_to_move);
30 void wait_for_homed(char axes_to_move);
31 void wait_for_homed_corexy(int axis);
32 void corexy_home(int home_axis, bool dirx, bool diry, float fast_rate, float slow_rate, unsigned int retract_steps);
33 void back_off_home(char axes_to_move);
34 void move_to_origin(char);
35 void on_get_public_data(void* argument);
36 void on_set_public_data(void* argument);
37 void on_idle(void *argument);
38 bool debounced_get(int pin);
39
40 float homing_position[3];
41 float home_offset[3];
42 uint8_t homing_order;
43 std::bitset<3> home_direction;
44 std::bitset<3> limit_enable;
45
46 unsigned int debounce_count;
47 float retract_mm[3];
48 float trim_mm[3];
49 float fast_rates[3];
50 float slow_rates[3];
51 Pin pins[6];
52 volatile float feed_rate[3];
53 struct {
54 bool is_corexy:1;
55 bool is_delta:1;
56 bool is_scara:1;
57 bool move_to_origin_after_home:1;
58 uint8_t bounce_cnt:4;
59 volatile char status:3;
60 };
61 };
62
63 #endif