Implement endstops using new motion control
[clinton/Smoothieware.git] / src / modules / robot / Planner.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 PLANNER_H
9#define PLANNER_H
10
807b9b57 11#include "ActuatorCoordinates.h"
66383b80
JM
12class Block;
13
558e170c 14class Planner
38bf9a1c
JM
15{
16public:
17 Planner();
38bf9a1c 18 float max_allowable_speed( float acceleration, float target_velocity, float distance);
38bf9a1c 19 float get_acceleration() const { return acceleration; }
c5fe1787 20 float get_z_acceleration() const { return z_acceleration > 0.0F ? z_acceleration : acceleration; }
38bf9a1c
JM
21
22 friend class Robot; // for acceleration, junction deviation, minimum_planner_speed
23
24private:
c8bac202
JM
25 void append_block(ActuatorCoordinates &target, float rate_mm_s, float distance, float unit_vec[] );
26 void recalculate();
558e170c 27 void config_load();
38bf9a1c 28 float previous_unit_vec[3];
38bf9a1c 29 float acceleration; // Setting
c5fe1787 30 float z_acceleration; // Setting
38bf9a1c 31 float junction_deviation; // Setting
44de6ef3 32 float z_junction_deviation; // Setting
38bf9a1c 33 float minimum_planner_speed; // Setting
4cff3ded
AW
34};
35
36
37
38#endif