Move most handling of steps from arm_solution,Robot,Planner to StepperMotor
[clinton/Smoothieware.git] / src / modules / robot / Robot.h
CommitLineData
df27a6a3 1/*
4cff3ded
AW
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.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
4cff3ded
AW
6*/
7
8#ifndef ROBOT_H
9#define ROBOT_H
10
11#include <string>
12using std::string;
4cff3ded
AW
13#include "libs/Module.h"
14#include "libs/Kernel.h"
15#include "../communication/utils/Gcode.h"
16#include "arm_solutions/BaseSolution.h"
17#include "Planner.h"
feb204be 18#include "libs/Pin.h"
670fa10b 19#include "libs/StepperMotor.h"
5647f709 20#include "RobotPublicAccess.h"
4cff3ded 21
4cff3ded
AW
22#define NEXT_ACTION_DEFAULT 0
23#define NEXT_ACTION_DWELL 1
24#define NEXT_ACTION_GO_HOME 2
25
26#define MOTION_MODE_SEEK 0 // G0
27#define MOTION_MODE_LINEAR 1 // G1
28#define MOTION_MODE_CW_ARC 2 // G2
29#define MOTION_MODE_CCW_ARC 3 // G3
30#define MOTION_MODE_CANCEL 4 // G80
31
32#define PATH_CONTROL_MODE_EXACT_PATH 0
33#define PATH_CONTROL_MODE_EXACT_STOP 1
34#define PATH_CONTROL_MODE_CONTINOUS 2
35
36#define PROGRAM_FLOW_RUNNING 0
37#define PROGRAM_FLOW_PAUSED 1
38#define PROGRAM_FLOW_COMPLETED 2
39
40#define SPINDLE_DIRECTION_CW 0
41#define SPINDLE_DIRECTION_CCW 1
42
43
44
45class Robot : public Module {
46 public:
47 Robot();
48 void on_module_loaded();
da24d6ae 49 void on_config_reload(void* argument);
4cff3ded 50 void on_gcode_received(void* argument);
b55cfff1
JM
51 void on_get_public_data(void* argument);
52 void on_set_public_data(void* argument);
5647f709 53
1ad23cd3
MM
54 void reset_axis_position(float position, int axis);
55 void get_axis_position(float position[]);
56 float to_millimeters(float value);
57 float from_millimeters(float value);
a63da33c 58
6de8ab5b 59 BaseSolution* arm_solution; // Selected Arm solution ( millimeters to step calculation )
a63da33c 60 bool absolute_mode; // true for absolute mode ( default ), false for relative mode
a974cd04
BG
61
62 private:
d149c730 63 void distance_in_gcode_is_known(Gcode* gcode);
1ad23cd3
MM
64 void append_milestone( float target[], float feed_rate);
65 void append_line( Gcode* gcode, float target[], float feed_rate);
66 //void append_arc(float theta_start, float angular_travel, float radius, float depth, float rate);
67 void append_arc( Gcode* gcode, float target[], float offset[], float radius, bool is_clockwise );
aab6cbba
AW
68
69
1ad23cd3 70 void compute_arc(Gcode* gcode, float offset[], float target[]);
6de8ab5b 71
1ad23cd3 72 float theta(float x, float y);
4cff3ded
AW
73 void select_plane(uint8_t axis_0, uint8_t axis_1, uint8_t axis_2);
74
1ad23cd3
MM
75 float current_position[3]; // Current position, in millimeters
76 float last_milestone[3]; // Last position, in millimeters
4cff3ded 77 bool inch_mode; // true for inch mode, false for millimeter mode ( default )
c83887ea 78 int8_t motion_mode; // Motion mode for the current received Gcode
1ad23cd3
MM
79 float seek_rate; // Current rate for seeking moves ( mm/s )
80 float feed_rate; // Current rate for feeding moves ( mm/s )
4cff3ded 81 uint8_t plane_axis_0, plane_axis_1, plane_axis_2; // Current plane ( XY, XZ, YZ )
1ad23cd3
MM
82 float mm_per_line_segment; // Setting : Used to split lines into segments
83 float mm_per_arc_segment; // Setting : Used to split arcs into segmentrs
84 float delta_segments_per_second; // Setting : Used to split lines into segments for delta based on speed
7369629d 85
b66fb830
AW
86 // Number of arc generation iterations by small angle approximation before exact arc trajectory
87 // correction. This parameter maybe decreased if there are issues with the accuracy of the arc
88 // generations. In general, the default value is more than enough for the intended CNC applications
89 // of grbl, and should be on the order or greater than the size of the buffer to help with the
90 // computational efficiency of generating arcs.
91 int arc_correction; // Setting : how often to rectify arc computation
1ad23cd3 92 float max_speeds[3]; // Setting : max allowable speed in mm/m for each axis
b66fb830 93
a974cd04
BG
94 // Used by Stepper
95 public:
670fa10b
L
96 StepperMotor* alpha_stepper_motor;
97 StepperMotor* beta_stepper_motor;
98 StepperMotor* gamma_stepper_motor;
feb204be 99
78d0e16a
MM
100 std::vector<StepperMotor*> actuators;
101
1ad23cd3 102 float seconds_per_minute; // for realtime speed change
4cff3ded
AW
103};
104
6de8ab5b 105// Convert from inches to millimeters ( our internal storage unit ) if needed
1ad23cd3 106inline float Robot::to_millimeters( float value ){
6de8ab5b
SK
107 return this->inch_mode ? value * 25.4 : value;
108}
1ad23cd3 109inline float Robot::from_millimeters( float value){
6de8ab5b
SK
110 return this->inch_mode ? value/25.4 : value;
111}
1ad23cd3
MM
112inline void Robot::get_axis_position(float position[]){
113 memcpy(position, this->current_position, sizeof(float)*3 );
6de8ab5b
SK
114}
115
4cff3ded 116#endif