Merge pull request #955 from Bouni/feature/spindle-refactor
[clinton/Smoothieware.git] / src / main.cpp
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
4cff3ded 8#include "libs/Kernel.h"
88443c6b 9
4cff3ded 10#include "modules/tools/laser/Laser.h"
8322515e 11#include "modules/tools/spindle/SpindleMaker.h"
14ecdbd7 12#include "modules/tools/extruder/ExtruderMaker.h"
3c132bd0 13#include "modules/tools/temperaturecontrol/TemperatureControlPool.h"
201bcb94 14#include "modules/tools/endstops/Endstops.h"
88443c6b 15#include "modules/tools/zprobe/ZProbe.h"
ed866a4b 16#include "modules/tools/scaracal/SCARAcal.h"
c48757a7 17#include "RotaryDeltaCalibration.h"
cc1d3b1f 18#include "modules/tools/switch/SwitchPool.h"
abe97b79 19#include "modules/tools/temperatureswitch/TemperatureSwitch.h"
13320983 20#include "modules/tools/drillingcycles/Drillingcycles.h"
89b1a6eb 21#include "FilamentDetector.h"
3eca6882 22#include "MotorDriverControl.h"
88443c6b 23
3fceb8eb 24#include "modules/robot/Conveyor.h"
4eb9c745 25#include "modules/utils/simpleshell/SimpleShell.h"
cf44cb59 26#include "modules/utils/configurator/Configurator.h"
0e8b102e 27#include "modules/utils/currentcontrol/CurrentControl.h"
1cf49da1 28#include "modules/utils/player/Player.h"
35e7b158 29#include "modules/utils/killbutton/KillButton.h"
4a679a75 30#include "modules/utils/PlayLed/PlayLed.h"
35089dc7 31#include "modules/utils/panel/Panel.h"
d4ee6ee2 32#include "libs/Network/uip/Network.h"
61134a65 33#include "Config.h"
7af0714f 34#include "checksumm.h"
8d54c34c 35#include "ConfigValue.h"
dc3542cf 36#include "StepTicker.h"
b772a11c 37#include "SlowTicker.h"
8a9f9313 38#include "Robot.h"
35089dc7 39
2487f50b 40// #include "libs/ChaNFSSD/SDFileSystem.h"
4eb9c745
AW
41#include "libs/nuts_bolts.h"
42#include "libs/utils.h"
4cff3ded 43
40c831b8
MM
44// Debug
45#include "libs/SerialMessage.h"
a39e1557 46
7c3c5e0f
MM
47#include "libs/USBDevice/USB.h"
48#include "libs/USBDevice/USBMSD/USBMSD.h"
49#include "libs/USBDevice/USBMSD/SDCard.h"
50#include "libs/USBDevice/USBSerial/USBSerial.h"
9f0f2c8f 51#include "libs/USBDevice/DFU.h"
246fd409 52#include "libs/SDFAT.h"
61134a65 53#include "StreamOutputPool.h"
17c89e4d 54#include "ToolManager.h"
246fd409 55
073b1698
MM
56#include "libs/Watchdog.h"
57
582559c6 58#include "version.h"
61134a65 59#include "system_LPC17xx.h"
8b261cdc 60#include "platform_memory.h"
582559c6 61
a2f7633f
JM
62#include "mbed.h"
63
764b2de4 64#define second_usb_serial_enable_checksum CHECKSUM("second_usb_serial_enable")
82d1ceb3 65#define disable_msd_checksum CHECKSUM("msd_disable")
f431d45c 66#define dfu_enable_checksum CHECKSUM("dfu_enable")
55a2f359 67#define watchdog_timeout_checksum CHECKSUM("watchdog_timeout")
764b2de4 68
073b1698 69
d337942a 70// USB Stuff
5c84acba 71SDCard sd __attribute__ ((section ("AHBSRAM0"))) (P0_9, P0_8, P0_7, P0_6); // this selects SPI1 as the sdcard as it is on Smoothieboard
82414cb2 72//SDCard sd(P0_18, P0_17, P0_15, P0_16); // this selects SPI0 as the sdcard
eaf7b7eb 73//SDCard sd(P0_18, P0_17, P0_15, P2_8); // this selects SPI0 as the sdcard witrh a different sd select
82414cb2 74
5c84acba
JM
75USB u __attribute__ ((section ("AHBSRAM0")));
76USBSerial usbserial __attribute__ ((section ("AHBSRAM0"))) (&u);
45509e68
JM
77#ifndef DISABLEMSD
78USBMSD msc __attribute__ ((section ("AHBSRAM0"))) (&u, &sd);
79#else
8c6d9683 80USBMSD *msc= NULL;
45509e68 81#endif
7c3c5e0f 82
5c84acba 83SDFAT mounter __attribute__ ((section ("AHBSRAM0"))) ("sd", &sd);
a39e1557 84
ca3a28b4
MM
85GPIO leds[5] = {
86 GPIO(P1_18),
87 GPIO(P1_19),
88 GPIO(P1_20),
89 GPIO(P1_21),
90 GPIO(P4_28)
91};
a39e1557 92
8a1a44cb 93void init() {
2a1089e1
AW
94
95 // Default pins to low status
96 for (int i = 0; i < 5; i++){
ca3a28b4 97 leds[i].output();
82d1ceb3 98 leds[i]= 0;
ca3a28b4
MM
99 }
100
4464301d 101 Kernel* kernel = new Kernel();
a39e1557 102
577414f6 103 kernel->streams->printf("Smoothie Running @%ldMHz\r\n", SystemCoreClock / 1000000);
582559c6
JM
104 Version version;
105 kernel->streams->printf(" Build version %s, Build date %s\r\n", version.get_build(), version.get_build_date());
599cb4bd
JM
106#ifdef CNC
107 kernel->streams->printf(" CNC Build\r\n");
108#endif
e6c14bac
JM
109#ifdef DISABLEMSD
110 kernel->streams->printf(" NOMSD Build\r\n");
111#endif
4cff3ded 112
f431d45c 113 bool sdok= (sd.disk_initialize() == 0);
bb270b88
JM
114 if(!sdok) kernel->streams->printf("SDCard failed to initialize\r\n");
115
116 #ifdef NONETWORK
117 kernel->streams->printf("NETWORK is disabled\r\n");
118 #endif
f431d45c 119
45509e68 120#ifdef DISABLEMSD
82d1ceb3 121 // attempt to be able to disable msd in config
e6c14bac 122 if(sdok && !kernel->config->value( disable_msd_checksum )->by_default(true)->as_bool()){
8c6d9683
JM
123 // HACK to zero the memory USBMSD uses as it and its objects seem to not initialize properly in the ctor
124 size_t n= sizeof(USBMSD);
125 void *v = AHB0.alloc(n);
126 memset(v, 0, n); // clear the allocated memory
127 msc= new(v) USBMSD(&u, &sd); // allocate object using zeroed memory
128 }else{
129 msc= NULL;
130 kernel->streams->printf("MSD is disabled\r\n");
131 }
45509e68 132#endif
82d1ceb3 133
2a1089e1 134 // Create and add main modules
f6898df1 135 kernel->add_module( new(AHB0) Player() );
df930a5f 136
8b261cdc
JM
137 kernel->add_module( new(AHB0) CurrentControl() );
138 kernel->add_module( new(AHB0) KillButton() );
139 kernel->add_module( new(AHB0) PlayLed() );
24584878 140
df930a5f 141 // these modules can be completely disabled in the Makefile by adding to EXCLUDE_MODULES
8b260c2c
JM
142 #ifndef NO_TOOLS_ENDSTOPS
143 kernel->add_module( new(AHB0) Endstops() );
144 #endif
145
24584878
JM
146 #ifndef NO_TOOLS_SWITCH
147 SwitchPool *sp= new SwitchPool();
148 sp->load_tools();
149 delete sp;
150 #endif
df930a5f 151 #ifndef NO_TOOLS_EXTRUDER
ec6fde0b 152 // NOTE this must be done first before Temperature control so ToolManager can handle Tn before temperaturecontrol module does
24584878
JM
153 ExtruderMaker *em= new ExtruderMaker();
154 em->load_tools();
155 delete em;
df930a5f 156 #endif
c7689006 157 #ifndef NO_TOOLS_TEMPERATURECONTROL
ec6fde0b 158 // Note order is important here must be after extruder so Tn as a parameter will get executed first
24584878
JM
159 TemperatureControlPool *tp= new TemperatureControlPool();
160 tp->load_tools();
bab4e1bd 161 delete tp;
c7689006 162 #endif
df930a5f 163 #ifndef NO_TOOLS_LASER
23201534 164 kernel->add_module( new Laser() );
df930a5f 165 #endif
65d97468 166 #ifndef NO_TOOLS_SPINDLE
8322515e 167 SpindleMaker *sm= new SpindleMaker();
168 sm->load_spindle();
169 delete sm;
2ad2e4f7 170 //kernel->add_module( new(AHB0) Spindle() );
65d97468 171 #endif
df930a5f 172 #ifndef NO_UTILS_PANEL
8b261cdc 173 kernel->add_module( new(AHB0) Panel() );
df930a5f 174 #endif
88443c6b 175 #ifndef NO_TOOLS_ZPROBE
8b261cdc 176 kernel->add_module( new(AHB0) ZProbe() );
88443c6b 177 #endif
ed866a4b 178 #ifndef NO_TOOLS_SCARACAL
8b261cdc 179 kernel->add_module( new(AHB0) SCARAcal() );
ed866a4b 180 #endif
c48757a7 181 #ifndef NO_TOOLS_ROTARYDELTACALIBRATION
216ef701 182 kernel->add_module( new(AHB0) RotaryDeltaCalibration() );
c48757a7 183 #endif
df930a5f 184 #ifndef NONETWORK
d4ee6ee2 185 kernel->add_module( new Network() );
df930a5f 186 #endif
1dc339ee 187 #ifndef NO_TOOLS_TEMPERATURESWITCH
bab4e1bd 188 // Must be loaded after TemperatureControl
216ef701 189 kernel->add_module( new(AHB0) TemperatureSwitch() );
1dc339ee 190 #endif
13320983 191 #ifndef NO_TOOLS_DRILLINGCYCLES
216ef701 192 kernel->add_module( new(AHB0) Drillingcycles() );
b4a89b87 193 #endif
89b1a6eb 194 #ifndef NO_TOOLS_FILAMENTDETECTOR
216ef701 195 kernel->add_module( new(AHB0) FilamentDetector() );
89b1a6eb 196 #endif
9b013d84 197 #ifndef NO_UTILS_MOTORDRIVERCONTROL
fc320ac5 198 kernel->add_module( new MotorDriverControl(0) );
3eca6882 199 #endif
4a679a75 200 // Create and initialize USB stuff
7c3c5e0f 201 u.init();
8a004d38 202
45509e68 203#ifdef DISABLEMSD
8c6d9683
JM
204 if(sdok && msc != NULL){
205 kernel->add_module( msc );
206 }
45509e68
JM
207#else
208 kernel->add_module( &msc );
209#endif
b813be45 210
7c3c5e0f 211 kernel->add_module( &usbserial );
764b2de4 212 if( kernel->config->value( second_usb_serial_enable_checksum )->by_default(false)->as_bool() ){
f431d45c
JM
213 kernel->add_module( new(AHB0) USBSerial(&u) );
214 }
215
216 if( kernel->config->value( dfu_enable_checksum )->by_default(false)->as_bool() ){
217 kernel->add_module( new(AHB0) DFU(&u));
f6193cbd 218 }
55a2f359 219
f6193cbd
JM
220 // 10 second watchdog timeout (or config as seconds)
221 float t= kernel->config->value( watchdog_timeout_checksum )->by_default(10.0F)->as_number();
222 if(t > 0.1F) {
223 // NOTE setting WDT_RESET with the current bootloader would leave it in DFU mode which would be suboptimal
224 kernel->add_module( new Watchdog(t*1000000, WDT_MRI)); // WDT_RESET));
225 kernel->streams->printf("Watchdog enabled for %f seconds\n", t);
55a2f359 226 }else{
f6193cbd 227 kernel->streams->printf("WARNING Watchdog is disabled\n");
764b2de4 228 }
55a2f359 229
f6193cbd 230
7c3c5e0f
MM
231 kernel->add_module( &u );
232
8b261cdc
JM
233 // memory before cache is cleared
234 //SimpleShell::print_mem(kernel->streams);
235
a4bfde91
JM
236 // clear up the config cache to save some memory
237 kernel->config->config_cache_clear();
238
73706276 239 if(kernel->is_using_leds()) {
a3be54e3 240 // set some leds to indicate status... led0 init done, led1 mainloop running, led2 idle loop running, led3 sdcard ok
21320fc6 241 leds[0]= 1; // indicate we are done with init
a3be54e3 242 leds[3]= sdok?1:0; // 4th led indicates sdcard is available (TODO maye should indicate config was found)
21320fc6 243 }
82d1ceb3 244
33e4cc02
JM
245 if(sdok) {
246 // load config override file if present
247 // NOTE only Mxxx commands that set values should be put in this file. The file is generated by M500
248 FILE *fp= fopen(kernel->config_override_filename(), "r");
249 if(fp != NULL) {
250 char buf[132];
251 kernel->streams->printf("Loading config override file: %s...\n", kernel->config_override_filename());
252 while(fgets(buf, sizeof buf, fp) != NULL) {
253 kernel->streams->printf(" %s", buf);
254 if(buf[0] == ';') continue; // skip the comments
255 struct SerialMessage message= {&(StreamOutput::NullStream), buf};
256 kernel->call_event(ON_CONSOLE_LINE_RECEIVED, &message);
257 }
258 kernel->streams->printf("config override file executed\n");
259 fclose(fp);
260 }
261 }
dc3542cf 262
b772a11c 263 // start the timers and interrupts
8a9f9313 264 THEKERNEL->conveyor->start(THEROBOT->get_number_registered_motors());
dc3542cf 265 THEKERNEL->step_ticker->start();
b772a11c 266 THEKERNEL->slow_ticker->start();
8a1a44cb
JM
267}
268
269int main()
270{
271 init();
33e4cc02 272
82d1ceb3 273 uint16_t cnt= 0;
2a1089e1 274 // Main loop
4cff3ded 275 while(1){
73706276 276 if(THEKERNEL->is_using_leds()) {
21320fc6
JM
277 // flash led 2 to show we are alive
278 leds[1]= (cnt++ & 0x1000) ? 1 : 0;
279 }
8a1a44cb
JM
280 THEKERNEL->call_event(ON_MAIN_LOOP);
281 THEKERNEL->call_event(ON_IDLE);
4cff3ded 282 }
4cff3ded 283}