Fix command line error if command not handled in SimpleShell but elsewhere
[clinton/Smoothieware.git] / src / libs / Kernel.h
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 #ifndef KERNEL_H
9 #define KERNEL_H
10
11 #define THEKERNEL Kernel::instance
12
13 #include "Module.h"
14 #include <array>
15 #include <vector>
16 #include <string>
17
18 //Module manager
19 class Config;
20 class Module;
21 class Conveyor;
22 class SlowTicker;
23 class SerialConsole;
24 class StreamOutputPool;
25 class GcodeDispatch;
26 class Robot;
27 class Stepper;
28 class Planner;
29 class StepTicker;
30 class Adc;
31 class PublicData;
32 class SimpleShell;
33 class Configurator;
34
35 class Kernel {
36 public:
37 Kernel();
38 static Kernel* instance; // the Singleton instance of Kernel usable anywhere
39 const char* config_override_filename(){ return "/sd/config-override"; }
40
41 void add_module(Module* module);
42 void register_for_event(_EVENT_ENUM id_event, Module *module);
43 void call_event(_EVENT_ENUM id_event, void * argument= nullptr);
44
45 bool kernel_has_event(_EVENT_ENUM id_event, Module *mod);
46 void unregister_for_event(_EVENT_ENUM id_event, Module *module);
47
48 bool is_using_leds() const { return use_leds; }
49 bool is_halted() const { return halted; }
50 bool is_grbl_mode() const { return grbl_mode; }
51
52 void set_feed_hold(bool f) { feed_hold= f; }
53 bool get_feed_hold() const { return feed_hold; }
54
55 std::string get_query_string();
56
57 // These modules are available to all other modules
58 SerialConsole* serial;
59 StreamOutputPool* streams;
60 GcodeDispatch* gcode_dispatch;
61 Robot* robot;
62 Stepper* stepper;
63 Planner* planner;
64 Config* config;
65 Conveyor* conveyor;
66 Configurator* configurator;
67 SimpleShell* simpleshell;
68
69 int debug;
70 SlowTicker* slow_ticker;
71 StepTicker* step_ticker;
72 Adc* adc;
73 std::string current_path;
74 uint32_t base_stepping_frequency;
75 uint32_t acceleration_ticks_per_second;
76
77 private:
78 // When a module asks to be called for a specific event ( a hook ), this is where that request is remembered
79 std::array<std::vector<Module*>, NUMBER_OF_DEFINED_EVENTS> hooks;
80 struct {
81 bool use_leds:1;
82 bool halted:1;
83 bool grbl_mode:1;
84 bool feed_hold:1;
85 };
86
87 };
88
89 #endif