refactor ON_HALT, add THEKERNEL->is_halted() for modules that just need to test it...
[clinton/Smoothieware.git] / src / modules / communication / GcodeDispatch.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 GCODE_DISPATCH_H
9#define GCODE_DISPATCH_H
10
b14f84e0
JM
11#include "libs/Module.h"
12
13#include <stdio.h>
4cff3ded
AW
14#include <string>
15using std::string;
4cff3ded 16
b375ba1d
JM
17class GcodeDispatch : public Module
18{
19public:
20 GcodeDispatch();
4cff3ded 21
b375ba1d
JM
22 virtual void on_module_loaded();
23 virtual void on_console_line_received(void *line);
44e8c359 24
b375ba1d
JM
25private:
26 int currentline;
27 string upload_filename;
28 FILE *upload_fd;
29 uint8_t last_g;
30 struct {
31 bool uploading: 1;
b375ba1d 32 };
4cff3ded
AW
33};
34
35#endif