Go back to stepticker getting data direct from block queue.
[clinton/Smoothieware.git] / src / libs / Kernel.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 KERNEL_H
9#define KERNEL_H
4cff3ded 10
879341be 11#define THEKERNEL Kernel::instance
f6542ad9 12#define THECONVEYOR THEKERNEL->conveyor
879341be 13
61134a65
JM
14#include "Module.h"
15#include <array>
16#include <vector>
e0d0ea84 17#include <string>
61134a65 18
4cff3ded 19//Module manager
a0e79e9b 20class Config;
4cff3ded 21class Module;
3fceb8eb 22class Conveyor;
d9ebc974 23class SlowTicker;
61134a65
JM
24class SerialConsole;
25class StreamOutputPool;
26class GcodeDispatch;
27class Robot;
61134a65 28class Planner;
61134a65
JM
29class StepTicker;
30class Adc;
31class PublicData;
3e54c9fc
JM
32class SimpleShell;
33class Configurator;
43b1a6e8 34
4cff3ded
AW
35class Kernel {
36 public:
37 Kernel();
879341be 38 static Kernel* instance; // the Singleton instance of Kernel usable anywhere
33e4cc02 39 const char* config_override_filename(){ return "/sd/config-override"; }
35089dc7 40
4cff3ded 41 void add_module(Module* module);
96f67b65 42 void register_for_event(_EVENT_ENUM id_event, Module *module);
93ea6adb
JM
43 void call_event(_EVENT_ENUM id_event, void * argument= nullptr);
44
a3be54e3 45 bool kernel_has_event(_EVENT_ENUM id_event, Module *module);
93ea6adb 46 void unregister_for_event(_EVENT_ENUM id_event, Module *module);
4cff3ded 47
73706276
JM
48 bool is_using_leds() const { return use_leds; }
49 bool is_halted() const { return halted; }
6c0193b3 50 bool is_grbl_mode() const { return grbl_mode; }
7d04f42d 51 bool is_ok_per_line() const { return ok_per_line; }
6c0193b3 52
17aca3f2
JM
53 void set_feed_hold(bool f) { feed_hold= f; }
54 bool get_feed_hold() const { return feed_hold; }
55
dcc91612 56 std::string get_query_string();
73706276 57
76217df5 58 // These modules are available to all other modules
4cff3ded 59 SerialConsole* serial;
df27a6a3 60 StreamOutputPool* streams;
40843ebc 61 GcodeDispatch* gcode_dispatch;
4cff3ded 62 Robot* robot;
4cff3ded
AW
63 Planner* planner;
64 Config* config;
663d7943 65 Conveyor* conveyor;
3e54c9fc
JM
66 Configurator* configurator;
67 SimpleShell* simpleshell;
4cff3ded 68
13e4a3f9 69 int debug;
3c132bd0
AW
70 SlowTicker* slow_ticker;
71 StepTicker* step_ticker;
72 Adc* adc;
e0d0ea84 73 std::string current_path;
a157d099
JM
74 uint32_t base_stepping_frequency;
75 uint32_t acceleration_ticks_per_second;
f29b0272 76
4cff3ded 77 private:
e0d0ea84 78 // When a module asks to be called for a specific event ( a hook ), this is where that request is remembered
96f67b65 79 std::array<std::vector<Module*>, NUMBER_OF_DEFINED_EVENTS> hooks;
73706276
JM
80 struct {
81 bool use_leds:1;
82 bool halted:1;
6c0193b3 83 bool grbl_mode:1;
17aca3f2 84 bool feed_hold:1;
7d04f42d 85 bool ok_per_line:1;
73706276 86 };
4cff3ded
AW
87
88};
89
90#endif