add to the cat command -d nnn where nnn is the seconds to wait before printing out...
[clinton/Smoothieware.git] / src / modules / utils / simpleshell / SimpleShell.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
9 #include "SimpleShell.h"
10 #include "libs/Kernel.h"
11 #include "libs/nuts_bolts.h"
12 #include "libs/utils.h"
13 #include "libs/SerialMessage.h"
14 #include "libs/StreamOutput.h"
15 #include "modules/robot/Conveyor.h"
16 #include "DirHandle.h"
17 #include "mri.h"
18 #include "version.h"
19 #include "PublicDataRequest.h"
20 #include "AppendFileStream.h"
21 #include "FileStream.h"
22 #include "checksumm.h"
23 #include "PublicData.h"
24 #include "Gcode.h"
25 #include "Robot.h"
26 #include "ToolManagerPublicAccess.h"
27 #include "GcodeDispatch.h"
28
29 #include "TemperatureControlPublicAccess.h"
30 #include "NetworkPublicAccess.h"
31 #include "platform_memory.h"
32 #include "SwitchPublicAccess.h"
33 #include "SDFAT.h"
34 #include "Thermistor.h"
35 #include "md5.h"
36
37 #include "system_LPC17xx.h"
38 #include "LPC17xx.h"
39
40 #include "mbed.h" // for wait_ms()
41
42 extern unsigned int g_maximumHeapAddress;
43
44 #include <malloc.h>
45 #include <mri.h>
46 #include <stdio.h>
47 #include <stdint.h>
48
49 extern "C" uint32_t __end__;
50 extern "C" uint32_t __malloc_free_list;
51 extern "C" uint32_t _sbrk(int size);
52
53 // command lookup table
54 const SimpleShell::ptentry_t SimpleShell::commands_table[] = {
55 {"ls", SimpleShell::ls_command},
56 {"cd", SimpleShell::cd_command},
57 {"pwd", SimpleShell::pwd_command},
58 {"cat", SimpleShell::cat_command},
59 {"rm", SimpleShell::rm_command},
60 {"mv", SimpleShell::mv_command},
61 {"upload", SimpleShell::upload_command},
62 {"reset", SimpleShell::reset_command},
63 {"dfu", SimpleShell::dfu_command},
64 {"break", SimpleShell::break_command},
65 {"help", SimpleShell::help_command},
66 {"?", SimpleShell::help_command},
67 {"version", SimpleShell::version_command},
68 {"mem", SimpleShell::mem_command},
69 {"get", SimpleShell::get_command},
70 {"set_temp", SimpleShell::set_temp_command},
71 {"switch", SimpleShell::switch_command},
72 {"net", SimpleShell::net_command},
73 {"load", SimpleShell::load_command},
74 {"save", SimpleShell::save_command},
75 {"remount", SimpleShell::remount_command},
76 {"calc_thermistor", SimpleShell::calc_thermistor_command},
77 {"thermistors", SimpleShell::print_thermistors_command},
78 {"md5sum", SimpleShell::md5sum_command},
79
80 // unknown command
81 {NULL, NULL}
82 };
83
84 int SimpleShell::reset_delay_secs = 0;
85
86 // Adam Greens heap walk from http://mbed.org/forum/mbed/topic/2701/?page=4#comment-22556
87 static uint32_t heapWalk(StreamOutput *stream, bool verbose)
88 {
89 uint32_t chunkNumber = 1;
90 // The __end__ linker symbol points to the beginning of the heap.
91 uint32_t chunkCurr = (uint32_t)&__end__;
92 // __malloc_free_list is the head pointer to newlib-nano's link list of free chunks.
93 uint32_t freeCurr = __malloc_free_list;
94 // Calling _sbrk() with 0 reserves no more memory but it returns the current top of heap.
95 uint32_t heapEnd = _sbrk(0);
96 // accumulate totals
97 uint32_t freeSize = 0;
98 uint32_t usedSize = 0;
99
100 stream->printf("Used Heap Size: %lu\n", heapEnd - chunkCurr);
101
102 // Walk through the chunks until we hit the end of the heap.
103 while (chunkCurr < heapEnd) {
104 // Assume the chunk is in use. Will update later.
105 int isChunkFree = 0;
106 // The first 32-bit word in a chunk is the size of the allocation. newlib-nano over allocates by 8 bytes.
107 // 4 bytes for this 32-bit chunk size and another 4 bytes to allow for 8 byte-alignment of returned pointer.
108 uint32_t chunkSize = *(uint32_t *)chunkCurr;
109 // The start of the next chunk is right after the end of this one.
110 uint32_t chunkNext = chunkCurr + chunkSize;
111
112 // The free list is sorted by address.
113 // Check to see if we have found the next free chunk in the heap.
114 if (chunkCurr == freeCurr) {
115 // Chunk is free so flag it as such.
116 isChunkFree = 1;
117 // The second 32-bit word in a free chunk is a pointer to the next free chunk (again sorted by address).
118 freeCurr = *(uint32_t *)(freeCurr + 4);
119 }
120
121 // Skip past the 32-bit size field in the chunk header.
122 chunkCurr += 4;
123 // 8-byte align the data pointer.
124 chunkCurr = (chunkCurr + 7) & ~7;
125 // newlib-nano over allocates by 8 bytes, 4 bytes for the 32-bit chunk size and another 4 bytes to allow for 8
126 // byte-alignment of the returned pointer.
127 chunkSize -= 8;
128 if (verbose)
129 stream->printf(" Chunk: %lu Address: 0x%08lX Size: %lu %s\n", chunkNumber, chunkCurr, chunkSize, isChunkFree ? "CHUNK FREE" : "");
130
131 if (isChunkFree) freeSize += chunkSize;
132 else usedSize += chunkSize;
133
134 chunkCurr = chunkNext;
135 chunkNumber++;
136 }
137 stream->printf("Allocated: %lu, Free: %lu\r\n", usedSize, freeSize);
138 return freeSize;
139 }
140
141
142 void SimpleShell::on_module_loaded()
143 {
144 this->register_for_event(ON_CONSOLE_LINE_RECEIVED);
145 this->register_for_event(ON_GCODE_RECEIVED);
146 this->register_for_event(ON_SECOND_TICK);
147
148 reset_delay_secs = 0;
149 }
150
151 void SimpleShell::on_second_tick(void *)
152 {
153 // we are timing out for the reset
154 if (reset_delay_secs > 0) {
155 if (--reset_delay_secs == 0) {
156 system_reset(false);
157 }
158 }
159 }
160
161 void SimpleShell::on_gcode_received(void *argument)
162 {
163 Gcode *gcode = static_cast<Gcode *>(argument);
164 string args = get_arguments(gcode->get_command());
165
166 if (gcode->has_m) {
167 if (gcode->m == 20) { // list sd card
168 gcode->stream->printf("Begin file list\r\n");
169 ls_command("/sd", gcode->stream);
170 gcode->stream->printf("End file list\r\n");
171
172 } else if (gcode->m == 30) { // remove file
173 rm_command("/sd/" + args, gcode->stream);
174
175 } else if(gcode->m == 501) { // load config override
176 if(args.empty()) {
177 load_command("/sd/config-override", gcode->stream);
178 } else {
179 load_command("/sd/config-override." + args, gcode->stream);
180 }
181
182 } else if(gcode->m == 504) { // save to specific config override file
183 if(args.empty()) {
184 save_command("/sd/config-override", gcode->stream);
185 } else {
186 save_command("/sd/config-override." + args, gcode->stream);
187 }
188 }
189 }
190 }
191
192 bool SimpleShell::parse_command(const char *cmd, string args, StreamOutput *stream)
193 {
194 for (const ptentry_t *p = commands_table; p->command != NULL; ++p) {
195 if (strncasecmp(cmd, p->command, strlen(p->command)) == 0) {
196 p->func(args, stream);
197 return true;
198 }
199 }
200
201 return false;
202 }
203
204 // When a new line is received, check if it is a command, and if it is, act upon it
205 void SimpleShell::on_console_line_received( void *argument )
206 {
207 SerialMessage new_message = *static_cast<SerialMessage *>(argument);
208
209 // ignore comments and blank lines and if this is a G code then also ignore it
210 char first_char = new_message.message[0];
211 if(strchr(";( \n\rGMTN", first_char) != NULL) return;
212
213 string possible_command = new_message.message;
214
215 //new_message.stream->printf("Received %s\r\n", possible_command.c_str());
216 string cmd = shift_parameter(possible_command);
217
218 // find command and execute it
219 parse_command(cmd.c_str(), possible_command, new_message.stream);
220 }
221
222 // Act upon an ls command
223 // Convert the first parameter into an absolute path, then list the files in that path
224 void SimpleShell::ls_command( string parameters, StreamOutput *stream )
225 {
226 string path, opts;
227 while(!parameters.empty()) {
228 string s = shift_parameter( parameters );
229 if(s.front() == '-') {
230 opts.append(s);
231 } else {
232 path = s;
233 if(!parameters.empty()) {
234 path.append(" ");
235 path.append(parameters);
236 }
237 break;
238 }
239 }
240
241 path = absolute_from_relative(path);
242
243 DIR *d;
244 struct dirent *p;
245 d = opendir(path.c_str());
246 if (d != NULL) {
247 while ((p = readdir(d)) != NULL) {
248 stream->printf("%s", lc(string(p->d_name)).c_str());
249 if(p->d_isdir) {
250 stream->printf("/");
251 } else if(opts.find("-s", 0, 2) != string::npos) {
252 stream->printf(" %d", p->d_fsize);
253 }
254 stream->printf("\r\n");
255 }
256 closedir(d);
257 } else {
258 stream->printf("Could not open directory %s\r\n", path.c_str());
259 }
260 }
261
262 extern SDFAT mounter;
263
264 void SimpleShell::remount_command( string parameters, StreamOutput *stream )
265 {
266 mounter.remount();
267 stream->printf("remounted\r\n");
268 }
269
270 // Delete a file
271 void SimpleShell::rm_command( string parameters, StreamOutput *stream )
272 {
273 const char *fn = absolute_from_relative(shift_parameter( parameters )).c_str();
274 int s = remove(fn);
275 if (s != 0) stream->printf("Could not delete %s \r\n", fn);
276 }
277
278 // Rename a file
279 void SimpleShell::mv_command( string parameters, StreamOutput *stream )
280 {
281 string from = absolute_from_relative(shift_parameter( parameters ));
282 string to = absolute_from_relative(shift_parameter(parameters));
283 int s = rename(from.c_str(), to.c_str());
284 if (s != 0) stream->printf("Could not rename %s to %s\r\n", from.c_str(), to.c_str());
285 else stream->printf("renamed %s to %s\r\n", from.c_str(), to.c_str());
286 }
287
288 // Change current absolute path to provided path
289 void SimpleShell::cd_command( string parameters, StreamOutput *stream )
290 {
291 string folder = absolute_from_relative( parameters );
292
293 DIR *d;
294 d = opendir(folder.c_str());
295 if (d == NULL) {
296 stream->printf("Could not open directory %s \r\n", folder.c_str() );
297 } else {
298 THEKERNEL->current_path = folder;
299 closedir(d);
300 }
301 }
302
303 // Responds with the present working directory
304 void SimpleShell::pwd_command( string parameters, StreamOutput *stream )
305 {
306 stream->printf("%s\r\n", THEKERNEL->current_path.c_str());
307 }
308
309 // Output the contents of a file, first parameter is the filename, second is the limit ( in number of lines to output )
310 void SimpleShell::cat_command( string parameters, StreamOutput *stream )
311 {
312 // Get parameters ( filename and line limit )
313 string filename = absolute_from_relative(shift_parameter( parameters ));
314 string limit_parameter = shift_parameter( parameters );
315 int limit = -1;
316 int delay= 0;
317 if ( limit_parameter == "-d" ) {
318 string d= shift_parameter( parameters );
319 char *e = NULL;
320 delay = strtol(d.c_str(), &e, 10);
321 if (e <= limit_parameter.c_str())
322 delay = 0;
323
324 }else if ( limit_parameter != "" ) {
325 char *e = NULL;
326 limit = strtol(limit_parameter.c_str(), &e, 10);
327 if (e <= limit_parameter.c_str())
328 limit = -1;
329 }
330
331 // we have been asked to delay before cat, probably to allow time to issue upload command
332 while(delay-- > 0) {
333 for (int i = 0; i < 10; ++i) {
334 wait_ms(100);
335 THEKERNEL->call_event(ON_IDLE);
336 }
337 }
338
339 // Open file
340 FILE *lp = fopen(filename.c_str(), "r");
341 if (lp == NULL) {
342 stream->printf("File not found: %s\r\n", filename.c_str());
343 return;
344 }
345 string buffer;
346 int c;
347 int newlines = 0;
348 int linecnt = 0;
349 // Print each line of the file
350 while ((c = fgetc (lp)) != EOF) {
351 buffer.append((char *)&c, 1);
352 if ( char(c) == '\n' || ++linecnt > 80) {
353 newlines++;
354 stream->puts(buffer.c_str());
355 buffer.clear();
356 if(linecnt > 80) linecnt = 0;
357 // we need to kick things or they die
358 THEKERNEL->call_event(ON_IDLE);
359 }
360 if ( newlines == limit ) {
361 break;
362 }
363 };
364 fclose(lp);
365 }
366
367 void SimpleShell::upload_command( string parameters, StreamOutput *stream )
368 {
369 // this needs to be a hack. it needs to read direct from serial and not allow on_main_loop run until done
370 // NOTE this will block all operation until the upload is complete, so do not do while printing
371 if(!THEKERNEL->conveyor->is_queue_empty()) {
372 stream->printf("upload not allowed while printing or busy\n");
373 return;
374 }
375
376 // open file to upload to
377 string upload_filename = absolute_from_relative( parameters );
378 FILE *fd = fopen(upload_filename.c_str(), "w");
379 if(fd != NULL) {
380 stream->printf("uploading to file: %s, send control-D or control-Z to finish\r\n", upload_filename.c_str());
381 } else {
382 stream->printf("failed to open file: %s.\r\n", upload_filename.c_str());
383 return;
384 }
385
386 int cnt = 0;
387 bool uploading = true;
388 while(uploading) {
389 if(!stream->ready()) {
390 // we need to kick things or they die
391 THEKERNEL->call_event(ON_IDLE);
392 continue;
393 }
394
395 char c = stream->_getc();
396 if( c == 4 || c == 26) { // ctrl-D or ctrl-Z
397 uploading = false;
398 // close file
399 fclose(fd);
400 stream->printf("uploaded %d bytes\n", cnt);
401 return;
402
403 } else {
404 // write character to file
405 cnt++;
406 if(fputc(c, fd) != c) {
407 // error writing to file
408 stream->printf("error writing to file. ignoring all characters until EOF\r\n");
409 fclose(fd);
410 fd = NULL;
411 uploading= false;
412
413 } else {
414 if ((cnt%400) == 0) {
415 // HACK ALERT to get around fwrite corruption close and re open for append
416 fclose(fd);
417 fd = fopen(upload_filename.c_str(), "a");
418 // we need to kick things or they die
419 THEKERNEL->call_event(ON_IDLE);
420 }
421 }
422 }
423 }
424 // we got an error so ignore everything until EOF
425 char c;
426 do {
427 if(stream->ready()) {
428 c= stream->_getc();
429 }else{
430 THEKERNEL->call_event(ON_IDLE);
431 c= 0;
432 }
433 } while(c != 4 && c != 26);
434 }
435
436 // loads the specified config-override file
437 void SimpleShell::load_command( string parameters, StreamOutput *stream )
438 {
439 // Get parameters ( filename )
440 string filename = absolute_from_relative(parameters);
441 if(filename == "/") {
442 filename = THEKERNEL->config_override_filename();
443 }
444
445 FILE *fp = fopen(filename.c_str(), "r");
446 if(fp != NULL) {
447 char buf[132];
448 stream->printf("Loading config override file: %s...\n", filename.c_str());
449 while(fgets(buf, sizeof buf, fp) != NULL) {
450 stream->printf(" %s", buf);
451 if(buf[0] == ';') continue; // skip the comments
452 struct SerialMessage message = {&(StreamOutput::NullStream), buf};
453 THEKERNEL->call_event(ON_CONSOLE_LINE_RECEIVED, &message);
454 }
455 stream->printf("config override file executed\n");
456 fclose(fp);
457
458 } else {
459 stream->printf("File not found: %s\n", filename.c_str());
460 }
461 }
462
463 // saves the specified config-override file
464 void SimpleShell::save_command( string parameters, StreamOutput *stream )
465 {
466 // Get parameters ( filename )
467 string filename = absolute_from_relative(parameters);
468 if(filename == "/") {
469 filename = THEKERNEL->config_override_filename();
470 }
471
472 THEKERNEL->conveyor->wait_for_empty_queue(); //just to be safe as it can take a while to run
473
474 //remove(filename.c_str()); // seems to cause a hang every now and then
475 {
476 FileStream fs(filename.c_str());
477 fs.printf("; DO NOT EDIT THIS FILE\n");
478 // this also will truncate the existing file instead of deleting it
479 }
480
481 // stream that appends to file
482 AppendFileStream *gs = new AppendFileStream(filename.c_str());
483 // if(!gs->is_open()) {
484 // stream->printf("Unable to open File %s for write\n", filename.c_str());
485 // return;
486 // }
487
488 __disable_irq();
489 // issue a M500 which will store values in the file stream
490 Gcode *gcode = new Gcode("M500", gs);
491 THEKERNEL->call_event(ON_GCODE_RECEIVED, gcode );
492 delete gs;
493 delete gcode;
494 __enable_irq();
495
496 stream->printf("Settings Stored to %s\r\n", filename.c_str());
497 }
498
499 // show free memory
500 void SimpleShell::mem_command( string parameters, StreamOutput *stream)
501 {
502 bool verbose = shift_parameter( parameters ).find_first_of("Vv") != string::npos ;
503 unsigned long heap = (unsigned long)_sbrk(0);
504 unsigned long m = g_maximumHeapAddress - heap;
505 stream->printf("Unused Heap: %lu bytes\r\n", m);
506
507 uint32_t f = heapWalk(stream, verbose);
508 stream->printf("Total Free RAM: %lu bytes\r\n", m + f);
509
510 stream->printf("Free AHB0: %lu, AHB1: %lu\r\n", AHB0.free(), AHB1.free());
511 if (verbose) {
512 AHB0.debug(stream);
513 AHB1.debug(stream);
514 }
515 }
516
517 static uint32_t getDeviceType()
518 {
519 #define IAP_LOCATION 0x1FFF1FF1
520 uint32_t command[1];
521 uint32_t result[5];
522 typedef void (*IAP)(uint32_t *, uint32_t *);
523 IAP iap = (IAP) IAP_LOCATION;
524
525 __disable_irq();
526
527 command[0] = 54;
528 iap(command, result);
529
530 __enable_irq();
531
532 return result[1];
533 }
534
535 // get network config
536 void SimpleShell::net_command( string parameters, StreamOutput *stream)
537 {
538 void *returned_data;
539 bool ok = PublicData::get_value( network_checksum, get_ipconfig_checksum, &returned_data );
540 if(ok) {
541 char *str = (char *)returned_data;
542 stream->printf("%s\r\n", str);
543 free(str);
544
545 } else {
546 stream->printf("No network detected\n");
547 }
548 }
549
550 // print out build version
551 void SimpleShell::version_command( string parameters, StreamOutput *stream)
552 {
553 Version vers;
554 uint32_t dev = getDeviceType();
555 const char *mcu = (dev & 0x00100000) ? "LPC1769" : "LPC1768";
556 stream->printf("Build version: %s, Build date: %s, MCU: %s, System Clock: %ldMHz\r\n", vers.get_build(), vers.get_build_date(), mcu, SystemCoreClock / 1000000);
557 }
558
559 // Reset the system
560 void SimpleShell::reset_command( string parameters, StreamOutput *stream)
561 {
562 stream->printf("Smoothie out. Peace. Rebooting in 5 seconds...\r\n");
563 reset_delay_secs = 5; // reboot in 5 seconds
564 }
565
566 // go into dfu boot mode
567 void SimpleShell::dfu_command( string parameters, StreamOutput *stream)
568 {
569 stream->printf("Entering boot mode...\r\n");
570 system_reset(true);
571 }
572
573 // Break out into the MRI debugging system
574 void SimpleShell::break_command( string parameters, StreamOutput *stream)
575 {
576 stream->printf("Entering MRI debug mode...\r\n");
577 __debugbreak();
578 }
579
580 static int get_active_tool()
581 {
582 void *returned_data;
583 bool ok = PublicData::get_value(tool_manager_checksum, get_active_tool_checksum, &returned_data);
584 if (ok) {
585 int active_tool= *static_cast<int *>(returned_data);
586 return active_tool;
587 } else {
588 return 0;
589 }
590 }
591
592 // used to test out the get public data events
593 void SimpleShell::get_command( string parameters, StreamOutput *stream)
594 {
595 string what = shift_parameter( parameters );
596
597 if (what == "temp") {
598 struct pad_temperature temp;
599 string type = shift_parameter( parameters );
600 if(type.empty()) {
601 // scan all temperature controls
602 std::vector<struct pad_temperature> controllers;
603 bool ok = PublicData::get_value(temperature_control_checksum, poll_controls_checksum, &controllers);
604 if (ok) {
605 for (auto &c : controllers) {
606 stream->printf("%s (%d) temp: %f/%f @%d\r\n", c.designator.c_str(), c.id, c.current_temperature, c.target_temperature, c.pwm);
607 }
608
609 } else {
610 stream->printf("no heaters found\r\n");
611 }
612
613 }else{
614 bool ok = PublicData::get_value( temperature_control_checksum, current_temperature_checksum, get_checksum(type), &temp );
615
616 if (ok) {
617 stream->printf("%s temp: %f/%f @%d\r\n", type.c_str(), temp.current_temperature, temp.target_temperature, temp.pwm);
618 } else {
619 stream->printf("%s is not a known temperature device\r\n", type.c_str());
620 }
621 }
622
623 } else if (what == "pos") {
624 // convenience to call all the various M114 variants
625 char buf[64];
626 THEKERNEL->robot->print_position(0, buf, sizeof buf); stream->printf("last %s\n", buf);
627 THEKERNEL->robot->print_position(1, buf, sizeof buf); stream->printf("realtime %s\n", buf);
628 THEKERNEL->robot->print_position(2, buf, sizeof buf); stream->printf("%s\n", buf);
629 THEKERNEL->robot->print_position(3, buf, sizeof buf); stream->printf("%s\n", buf);
630 THEKERNEL->robot->print_position(4, buf, sizeof buf); stream->printf("%s\n", buf);
631 THEKERNEL->robot->print_position(5, buf, sizeof buf); stream->printf("%s\n", buf);
632
633 } else if (what == "wcs") {
634 // print the wcs state
635 std::vector<Robot::wcs_t> v= THEKERNEL->robot->get_wcs_state();
636 char current_wcs= std::get<0>(v[0]);
637 stream->printf("current WCS: %s\n", wcs2gcode(current_wcs).c_str());
638 int n= std::get<1>(v[0]);
639 for (int i = 1; i <= n; ++i) {
640 stream->printf("%s: %1.4f, %1.4f, %1.4f\n", wcs2gcode(i-1).c_str(), std::get<0>(v[i]), std::get<1>(v[i]), std::get<2>(v[i]));
641 }
642
643 stream->printf("G92: %1.4f, %1.4f, %1.4f\n", std::get<0>(v[n+1]), std::get<1>(v[n+1]), std::get<2>(v[n+1]));
644 stream->printf("ToolOffset: %1.4f, %1.4f, %1.4f\n", std::get<0>(v[n+2]), std::get<1>(v[n+2]), std::get<2>(v[n+2]));
645
646 } else if (what == "state") {
647 // [G0 G54 G17 G21 G90 G94 M0 M5 M9 T0 F0.]
648 stream->printf("[G%d %s G%d G%d G%d G94 T%d F%1.1f]\n",
649 THEKERNEL->gcode_dispatch->get_modal_command(),
650 wcs2gcode(THEKERNEL->robot->get_current_wcs()).c_str(),
651 THEKERNEL->robot->plane_axis_0 == X_AXIS && THEKERNEL->robot->plane_axis_1 == Y_AXIS && THEKERNEL->robot->plane_axis_2 == Z_AXIS ? 17 :
652 THEKERNEL->robot->plane_axis_0 == X_AXIS && THEKERNEL->robot->plane_axis_1 == Z_AXIS && THEKERNEL->robot->plane_axis_2 == Y_AXIS ? 18 :
653 THEKERNEL->robot->plane_axis_0 == Y_AXIS && THEKERNEL->robot->plane_axis_1 == Z_AXIS && THEKERNEL->robot->plane_axis_2 == X_AXIS ? 19 : 17,
654 THEKERNEL->robot->inch_mode ? 20 : 21,
655 THEKERNEL->robot->absolute_mode ? 90 : 91,
656 get_active_tool(),
657 THEKERNEL->robot->get_feed_rate());
658 }
659 }
660
661 // used to test out the get public data events
662 void SimpleShell::set_temp_command( string parameters, StreamOutput *stream)
663 {
664 string type = shift_parameter( parameters );
665 string temp = shift_parameter( parameters );
666 float t = temp.empty() ? 0.0 : strtof(temp.c_str(), NULL);
667 bool ok = PublicData::set_value( temperature_control_checksum, get_checksum(type), &t );
668
669 if (ok) {
670 stream->printf("%s temp set to: %3.1f\r\n", type.c_str(), t);
671 } else {
672 stream->printf("%s is not a known temperature device\r\n", type.c_str());
673 }
674 }
675
676 void SimpleShell::print_thermistors_command( string parameters, StreamOutput *stream)
677 {
678 Thermistor::print_predefined_thermistors(stream);
679 }
680
681 void SimpleShell::calc_thermistor_command( string parameters, StreamOutput *stream)
682 {
683 string s = shift_parameter( parameters );
684 int saveto= -1;
685 // see if we have -sn as first argument
686 if(s.find("-s", 0, 2) != string::npos) {
687 // save the results to thermistor n
688 saveto= strtol(s.substr(2).c_str(), nullptr, 10);
689 }else{
690 parameters= s;
691 }
692
693 std::vector<float> trl= parse_number_list(parameters.c_str());
694 if(trl.size() == 6) {
695 // calculate the coefficients
696 float c1, c2, c3;
697 std::tie(c1, c2, c3) = Thermistor::calculate_steinhart_hart_coefficients(trl[0], trl[1], trl[2], trl[3], trl[4], trl[5]);
698 stream->printf("Steinhart Hart coefficients: I%1.18f J%1.18f K%1.18f\n", c1, c2, c3);
699 if(saveto == -1) {
700 stream->printf(" Paste the above in the M305 S0 command, then save with M500\n");
701 }else{
702 char buf[80];
703 int n = snprintf(buf, sizeof(buf), "M305 S%d I%1.18f J%1.18f K%1.18f", saveto, c1, c2, c3);
704 string g(buf, n);
705 Gcode gcode(g, &(StreamOutput::NullStream));
706 THEKERNEL->call_event(ON_GCODE_RECEIVED, &gcode );
707 stream->printf(" Setting Thermistor %d to those settings, save with M500\n", saveto);
708 }
709
710 }else{
711 // give help
712 stream->printf("Usage: calc_thermistor T1,R1,T2,R2,T3,R3\n");
713 }
714 }
715
716 // used to test out the get public data events for switch
717 void SimpleShell::switch_command( string parameters, StreamOutput *stream)
718 {
719 string type = shift_parameter( parameters );
720 string value = shift_parameter( parameters );
721 bool ok = false;
722 if(value == "on" || value == "off") {
723 bool b = value == "on";
724 ok = PublicData::set_value( switch_checksum, get_checksum(type), state_checksum, &b );
725 } else {
726 float v = strtof(value.c_str(), NULL);
727 ok = PublicData::set_value( switch_checksum, get_checksum(type), value_checksum, &v );
728 }
729 if (ok) {
730 stream->printf("switch %s set to: %s\r\n", type.c_str(), value.c_str());
731 } else {
732 stream->printf("%s is not a known switch device\r\n", type.c_str());
733 }
734 }
735
736 void SimpleShell::md5sum_command( string parameters, StreamOutput *stream )
737 {
738 string filename = absolute_from_relative(parameters);
739
740 // Open file
741 FILE *lp = fopen(filename.c_str(), "r");
742 if (lp == NULL) {
743 stream->printf("File not found: %s\r\n", filename.c_str());
744 return;
745 }
746 MD5 md5;
747 uint8_t buf[64];
748 do {
749 size_t n= fread(buf, 1, sizeof buf, lp);
750 if(n > 0) md5.update(buf, n);
751 } while(!feof(lp));
752
753 stream->printf("%s %s\n", md5.finalize().hexdigest().c_str(), filename.c_str());
754 fclose(lp);
755 }
756
757
758
759 void SimpleShell::help_command( string parameters, StreamOutput *stream )
760 {
761 stream->printf("Commands:\r\n");
762 stream->printf("version\r\n");
763 stream->printf("mem [-v]\r\n");
764 stream->printf("ls [-s] [folder]\r\n");
765 stream->printf("cd folder\r\n");
766 stream->printf("pwd\r\n");
767 stream->printf("cat file [limit]\r\n");
768 stream->printf("rm file\r\n");
769 stream->printf("mv file newfile\r\n");
770 stream->printf("remount\r\n");
771 stream->printf("play file [-v]\r\n");
772 stream->printf("progress - shows progress of current play\r\n");
773 stream->printf("abort - abort currently playing file\r\n");
774 stream->printf("reset - reset smoothie\r\n");
775 stream->printf("dfu - enter dfu boot loader\r\n");
776 stream->printf("break - break into debugger\r\n");
777 stream->printf("config-get [<configuration_source>] <configuration_setting>\r\n");
778 stream->printf("config-set [<configuration_source>] <configuration_setting> <value>\r\n");
779 stream->printf("get temp [bed|hotend]\r\n");
780 stream->printf("set_temp bed|hotend 185\r\n");
781 stream->printf("get pos\r\n");
782 stream->printf("net\r\n");
783 stream->printf("load [file] - loads a configuration override file from soecified name or config-override\r\n");
784 stream->printf("save [file] - saves a configuration override file as specified filename or as config-override\r\n");
785 stream->printf("upload filename - saves a stream of text to the named file\r\n");
786 stream->printf("calc_thermistor [-s0] T1,R1,T2,R2,T3,R3 - calculate the Steinhart Hart coefficients for a thermistor\r\n");
787 stream->printf("thermistors - print out the predefined thermistors\r\n");
788 stream->printf("md5sum file - prints md5 sum of the given file\r\n");
789 }
790