Allow TABS in config
[clinton/Smoothieware.git] / src / modules / tools / extruder / Extruder.h
... / ...
CommitLineData
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
9
10#ifndef EXTURDER_MODULE_H
11#define EXTRUDER_MODULE_H
12
13#include "libs/Module.h"
14#include "libs/Kernel.h"
15#include "modules/robot/Block.h"
16#include "modules/tools/toolsmanager/Tool.h"
17#include "Pin.h"
18
19class StepperMotor;
20
21#define OFF 0
22#define SOLO 1
23#define FOLLOW 2
24
25class Extruder : public Module, public Tool {
26 public:
27 Extruder(uint16_t config_identifier);
28 void on_module_loaded();
29 void on_config_reload(void* argument);
30 void on_gcode_received(void*);
31 void on_gcode_execute(void* argument);
32 void on_block_begin(void* argument);
33 void on_block_end(void* argument);
34 void on_play(void* argument);
35 void on_pause(void* argument);
36 void on_speed_change(void* argument);
37 uint32_t acceleration_tick(uint32_t dummy);
38 uint32_t stepper_motor_finished_move(uint32_t dummy);
39 Block* append_empty_block();
40
41 Pin step_pin; // Step pin for the stepper driver
42 Pin dir_pin; // Dir pin for the stepper driver
43 Pin en_pin;
44
45 float target_position; // End point ( in mm ) for the current move
46 float current_position; // Current point ( in mm ) for the current move, incremented every time a move is executed
47 float unstepped_distance; // overflow buffer for requested moves that are less than 1 step
48 Block* current_block; // Current block we are stepping, same as Stepper's one
49 float steps_per_millimeter; // Steps to travel one millimeter
50 float feed_rate; //
51 float acceleration; //
52 float max_speed;
53
54 float travel_ratio;
55 float travel_distance;
56 bool absolute_mode; // absolute/relative coordinate mode switch
57
58 char mode; // extruder motion mode, OFF, SOLO, or FOLLOW
59
60 bool paused;
61 bool single_config;
62
63 uint16_t identifier;
64
65 StepperMotor* stepper_motor;
66
67};
68
69#endif