working Switch module
[clinton/Smoothieware.git] / src / main.cpp
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 #include "libs/Kernel.h"
9 #include "modules/tools/laser/Laser.h"
10 #include "modules/tools/extruder/Extruder.h"
11 #include "modules/tools/temperaturecontrol/TemperatureControlPool.h"
12 #include "modules/tools/switch/SwitchPool.h"
13 #include "modules/robot/Player.h"
14 #include "modules/utils/simpleshell/SimpleShell.h"
15 #include "modules/utils/configurator/Configurator.h"
16 #include "modules/utils/currentcontrol/CurrentControl.h"
17 #include "modules/utils/pausebutton/PauseButton.h"
18 #include "libs/ChaNFSSD/SDFileSystem.h"
19 #include "libs/Config.h"
20 #include "libs/nuts_bolts.h"
21 #include "libs/utils.h"
22
23 //#include "libs/USBCDCMSC/USBCDCMSC.h"
24 //SDFileSystem sd(p5, p6, p7, p8, "sd"); // LPC17xx specific : comment if you are not using a SD card ( for example with a mBed ).
25 LocalFileSystem local("local"); // LPC17xx specific : comment if you are not running a mBed
26 //USBCDCMSC cdcmsc(&sd); // LPC17xx specific : Composite serial + msc USB device
27
28 int main() {
29
30 Kernel* kernel = new Kernel();
31
32 kernel->serial->printf("Smoothie ( grbl port ) version 0.6 \r\n");
33
34 kernel->add_module( new Laser(p21) );
35 kernel->add_module( new Extruder() );
36 kernel->add_module( new SimpleShell() );
37 kernel->add_module( new Configurator() );
38 kernel->add_module( new CurrentControl() );
39 kernel->add_module( new TemperatureControlPool() );
40 kernel->add_module( new SwitchPool() );
41 kernel->add_module( new PauseButton() );
42
43 //kernel->add_module( &cdcmsc );
44
45 kernel->serial->printf("start\r\n");
46
47 while(1){
48 kernel->call_event(ON_MAIN_LOOP);
49 kernel->call_event(ON_IDLE);
50 }
51 }
52