Merge remote-tracking branch 'upstream/edge' into feature/kill-button
[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
10 #include "modules/tools/laser/Laser.h"
11 #include "modules/tools/extruder/ExtruderMaker.h"
12 #include "modules/tools/temperaturecontrol/TemperatureControlPool.h"
13 #include "modules/tools/endstops/Endstops.h"
14 #include "modules/tools/zprobe/ZProbe.h"
15 #include "modules/tools/scaracal/SCARAcal.h"
16 #include "modules/tools/switch/SwitchPool.h"
17 #include "modules/tools/temperatureswitch/TemperatureSwitch.h"
18
19 #include "modules/robot/Conveyor.h"
20 #include "modules/utils/simpleshell/SimpleShell.h"
21 #include "modules/utils/configurator/Configurator.h"
22 #include "modules/utils/currentcontrol/CurrentControl.h"
23 #include "modules/utils/player/Player.h"
24 #include "modules/utils/pausebutton/PauseButton.h"
25 #include "modules/utils/PlayLed/PlayLed.h"
26 #include "modules/utils/panel/Panel.h"
27 #include "libs/Network/uip/Network.h"
28 #include "Config.h"
29 #include "checksumm.h"
30 #include "ConfigValue.h"
31
32 // #include "libs/ChaNFSSD/SDFileSystem.h"
33 #include "libs/nuts_bolts.h"
34 #include "libs/utils.h"
35
36 // Debug
37 #include "libs/SerialMessage.h"
38
39 #include "libs/USBDevice/USB.h"
40 #include "libs/USBDevice/USBMSD/USBMSD.h"
41 #include "libs/USBDevice/USBMSD/SDCard.h"
42 #include "libs/USBDevice/USBSerial/USBSerial.h"
43 #include "libs/USBDevice/DFU.h"
44 #include "libs/SDFAT.h"
45 #include "StreamOutputPool.h"
46 #include "ToolManager.h"
47
48 #include "libs/Watchdog.h"
49
50 #include "version.h"
51 #include "system_LPC17xx.h"
52
53 #include "mbed.h"
54
55 #define second_usb_serial_enable_checksum CHECKSUM("second_usb_serial_enable")
56 #define disable_msd_checksum CHECKSUM("msd_disable")
57 #define disable_leds_checksum CHECKSUM("leds_disable")
58 #define dfu_enable_checksum CHECKSUM("dfu_enable")
59
60 // Watchdog wd(5000000, WDT_MRI);
61
62 // USB Stuff
63 SDCard sd __attribute__ ((section ("AHBSRAM0"))) (P0_9, P0_8, P0_7, P0_6); // this selects SPI1 as the sdcard as it is on Smoothieboard
64 //SDCard sd(P0_18, P0_17, P0_15, P0_16); // this selects SPI0 as the sdcard
65 //SDCard sd(P0_18, P0_17, P0_15, P2_8); // this selects SPI0 as the sdcard witrh a different sd select
66
67 USB u __attribute__ ((section ("AHBSRAM0")));
68 USBSerial usbserial __attribute__ ((section ("AHBSRAM0"))) (&u);
69 #ifndef DISABLEMSD
70 USBMSD msc __attribute__ ((section ("AHBSRAM0"))) (&u, &sd);
71 #else
72 USBMSD *msc= NULL;
73 #endif
74
75 SDFAT mounter __attribute__ ((section ("AHBSRAM0"))) ("sd", &sd);
76
77 GPIO leds[5] = {
78 GPIO(P1_18),
79 GPIO(P1_19),
80 GPIO(P1_20),
81 GPIO(P1_21),
82 GPIO(P4_28)
83 };
84
85 void init() {
86
87 // Default pins to low status
88 for (int i = 0; i < 5; i++){
89 leds[i].output();
90 leds[i]= 0;
91 }
92
93 Kernel* kernel = new Kernel();
94
95 kernel->streams->printf("Smoothie Running @%ldMHz\r\n", SystemCoreClock / 1000000);
96 Version version;
97 kernel->streams->printf(" Build version %s, Build date %s\r\n", version.get_build(), version.get_build_date());
98
99 //some boards don't have leds.. TOO BAD!
100 kernel->use_leds= !kernel->config->value( disable_leds_checksum )->by_default(false)->as_bool();
101
102 bool sdok= (sd.disk_initialize() == 0);
103 if(!sdok) kernel->streams->printf("SDCard is disabled\r\n");
104
105 #ifdef DISABLEMSD
106 // attempt to be able to disable msd in config
107 if(sdok && !kernel->config->value( disable_msd_checksum )->by_default(false)->as_bool()){
108 // HACK to zero the memory USBMSD uses as it and its objects seem to not initialize properly in the ctor
109 size_t n= sizeof(USBMSD);
110 void *v = AHB0.alloc(n);
111 memset(v, 0, n); // clear the allocated memory
112 msc= new(v) USBMSD(&u, &sd); // allocate object using zeroed memory
113 }else{
114 msc= NULL;
115 kernel->streams->printf("MSD is disabled\r\n");
116 }
117 #endif
118
119
120 // Create and add main modules
121 kernel->add_module( new SimpleShell() );
122 kernel->add_module( new Configurator() );
123 kernel->add_module( new CurrentControl() );
124 kernel->add_module( new PauseButton() );
125 kernel->add_module( new PlayLed() );
126 kernel->add_module( new Endstops() );
127 kernel->add_module( new Player() );
128
129
130 // these modules can be completely disabled in the Makefile by adding to EXCLUDE_MODULES
131 #ifndef NO_TOOLS_SWITCH
132 SwitchPool *sp= new SwitchPool();
133 sp->load_tools();
134 delete sp;
135 #endif
136 #ifndef NO_TOOLS_EXTRUDER
137 // NOTE this must be done first before Temperature control so ToolManager can handle Tn before temperaturecontrol module does
138 ExtruderMaker *em= new ExtruderMaker();
139 em->load_tools();
140 delete em;
141 #endif
142 #ifndef NO_TOOLS_TEMPERATURECONTROL
143 // Note order is important here must be after extruder so Tn as a parameter will get executed first
144 TemperatureControlPool *tp= new TemperatureControlPool();
145 tp->load_tools();
146 delete tp;
147 #endif
148 #ifndef NO_TOOLS_LASER
149 kernel->add_module( new Laser() );
150 #endif
151 #ifndef NO_UTILS_PANEL
152 kernel->add_module( new Panel() );
153 #endif
154 #ifndef NO_TOOLS_TOUCHPROBE
155 kernel->add_module( new Touchprobe() );
156 #endif
157 #ifndef NO_TOOLS_ZPROBE
158 kernel->add_module( new ZProbe() );
159 #endif
160 #ifndef NO_TOOLS_SCARACAL
161 kernel->add_module( new SCARAcal() );
162 #endif
163 #ifndef NONETWORK
164 kernel->add_module( new Network() );
165 #endif
166 #ifndef NO_TOOLS_TEMPERATURESWITCH
167 // Must be loaded after TemperatureControlPool
168 kernel->add_module( new TemperatureSwitch() );
169 #endif
170
171 // Create and initialize USB stuff
172 u.init();
173
174 #ifdef DISABLEMSD
175 if(sdok && msc != NULL){
176 kernel->add_module( msc );
177 }
178 #else
179 kernel->add_module( &msc );
180 #endif
181
182 kernel->add_module( &usbserial );
183 if( kernel->config->value( second_usb_serial_enable_checksum )->by_default(false)->as_bool() ){
184 kernel->add_module( new(AHB0) USBSerial(&u) );
185 }
186
187 if( kernel->config->value( dfu_enable_checksum )->by_default(false)->as_bool() ){
188 kernel->add_module( new(AHB0) DFU(&u));
189 }
190 kernel->add_module( &u );
191
192 // clear up the config cache to save some memory
193 kernel->config->config_cache_clear();
194
195 if(kernel->use_leds) {
196 // set some leds to indicate status... led0 init doe, led1 mainloop running, led2 idle loop running, led3 sdcard ok
197 leds[0]= 1; // indicate we are done with init
198 leds[3]= sdok?1:0; // 4th led inidicates sdcard is available (TODO maye should indicate config was found)
199 }
200
201 if(sdok) {
202 // load config override file if present
203 // NOTE only Mxxx commands that set values should be put in this file. The file is generated by M500
204 FILE *fp= fopen(kernel->config_override_filename(), "r");
205 if(fp != NULL) {
206 char buf[132];
207 kernel->streams->printf("Loading config override file: %s...\n", kernel->config_override_filename());
208 while(fgets(buf, sizeof buf, fp) != NULL) {
209 kernel->streams->printf(" %s", buf);
210 if(buf[0] == ';') continue; // skip the comments
211 struct SerialMessage message= {&(StreamOutput::NullStream), buf};
212 kernel->call_event(ON_CONSOLE_LINE_RECEIVED, &message);
213 }
214 kernel->streams->printf("config override file executed\n");
215 fclose(fp);
216 }
217 }
218 }
219
220 int main()
221 {
222 init();
223
224 uint16_t cnt= 0;
225 // Main loop
226 while(1){
227 if(THEKERNEL->use_leds) {
228 // flash led 2 to show we are alive
229 leds[1]= (cnt++ & 0x1000) ? 1 : 0;
230 }
231 THEKERNEL->call_event(ON_MAIN_LOOP);
232 THEKERNEL->call_event(ON_IDLE);
233 }
234 }