Allow auto detection of MCU and set clock speed accordingly
[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 "libs/Kernel.h"
10 #include "SimpleShell.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
21 #include "modules/tools/temperaturecontrol/TemperatureControlPublicAccess.h"
22 #include "modules/robot/RobotPublicAccess.h"
23
24 //extern "C" caddr_t _sbrk(int incr);
25 extern unsigned int g_maximumHeapAddress;
26
27 #include <malloc.h>
28 #include <mri.h>
29 #include <stdio.h>
30 #include <stdint.h>
31
32 extern "C" uint32_t __end__;
33 extern "C" uint32_t __malloc_free_list;
34 extern "C" uint32_t _sbrk(int size);
35
36
37 // Adam Greens heap walk from http://mbed.org/forum/mbed/topic/2701/?page=4#comment-22556
38 static void heapWalk(StreamOutput* stream, bool verbose)
39 {
40 uint32_t chunkNumber = 1;
41 // The __end__ linker symbol points to the beginning of the heap.
42 uint32_t chunkCurr = (uint32_t)&__end__;
43 // __malloc_free_list is the head pointer to newlib-nano's link list of free chunks.
44 uint32_t freeCurr = __malloc_free_list;
45 // Calling _sbrk() with 0 reserves no more memory but it returns the current top of heap.
46 uint32_t heapEnd = _sbrk(0);
47 // accumulate totals
48 uint32_t freeSize= 0;
49 uint32_t usedSize= 0;
50
51 stream->printf("Used Heap Size: %lu\n", heapEnd - chunkCurr);
52
53 // Walk through the chunks until we hit the end of the heap.
54 while (chunkCurr < heapEnd)
55 {
56 // Assume the chunk is in use. Will update later.
57 int isChunkFree = 0;
58 // The first 32-bit word in a chunk is the size of the allocation. newlib-nano over allocates by 8 bytes.
59 // 4 bytes for this 32-bit chunk size and another 4 bytes to allow for 8 byte-alignment of returned pointer.
60 uint32_t chunkSize = *(uint32_t*)chunkCurr;
61 // The start of the next chunk is right after the end of this one.
62 uint32_t chunkNext = chunkCurr + chunkSize;
63
64 // The free list is sorted by address.
65 // Check to see if we have found the next free chunk in the heap.
66 if (chunkCurr == freeCurr)
67 {
68 // Chunk is free so flag it as such.
69 isChunkFree = 1;
70 // The second 32-bit word in a free chunk is a pointer to the next free chunk (again sorted by address).
71 freeCurr = *(uint32_t*)(freeCurr + 4);
72 }
73
74 // Skip past the 32-bit size field in the chunk header.
75 chunkCurr += 4;
76 // 8-byte align the data pointer.
77 chunkCurr = (chunkCurr + 7) & ~7;
78 // newlib-nano over allocates by 8 bytes, 4 bytes for the 32-bit chunk size and another 4 bytes to allow for 8
79 // byte-alignment of the returned pointer.
80 chunkSize -= 8;
81 if(verbose)
82 stream->printf(" Chunk: %lu Address: 0x%08lX Size: %lu %s\n", chunkNumber, chunkCurr, chunkSize, isChunkFree ? "CHUNK FREE" : "");
83
84 if(isChunkFree) freeSize += chunkSize;
85 else usedSize += chunkSize;
86
87 chunkCurr = chunkNext;
88 chunkNumber++;
89 }
90 stream->printf("Allocated: %lu, Free: %lu\r\n", usedSize, freeSize);
91 }
92
93
94 void SimpleShell::on_module_loaded(){
95 this->current_path = "/";
96 this->register_for_event(ON_CONSOLE_LINE_RECEIVED);
97 this->reset_delay_secs= 0;
98
99 this->register_for_event(ON_SECOND_TICK);
100 this->register_for_event(ON_GCODE_RECEIVED);
101 }
102
103 void SimpleShell::on_second_tick(void*) {
104 // we are timing out for the reset
105 if (this->reset_delay_secs > 0) {
106 if(--this->reset_delay_secs == 0){
107 system_reset(false);
108 }
109 }
110 }
111
112 void SimpleShell::on_gcode_received(void *argument) {
113 Gcode *gcode = static_cast<Gcode*>(argument);
114
115 if (gcode->has_m) {
116 if (gcode->m == 20) { // list sd card
117 gcode->mark_as_taken();
118 gcode->stream->printf("Begin file list\r\n");
119 ls_command("/sd", gcode->stream);
120 gcode->stream->printf("End file list\r\n");
121 }
122 }
123 }
124
125 // When a new line is received, check if it is a command, and if it is, act upon it
126 void SimpleShell::on_console_line_received( void* argument ){
127 SerialMessage new_message = *static_cast<SerialMessage*>(argument);
128 string possible_command = new_message.message;
129
130 //new_message.stream->printf("Received %s\r\n", possible_command.c_str());
131
132 // We don't compare to a string but to a checksum of that string, this saves some space in flash memory
133 unsigned short check_sum = get_checksum( possible_command.substr(0,possible_command.find_first_of(" \r\n")) ); // todo: put this method somewhere more convenient
134
135 // Act depending on command
136 if (check_sum == ls_command_checksum)
137 this->ls_command( get_arguments(possible_command), new_message.stream );
138 else if (check_sum == cd_command_checksum)
139 this->cd_command( get_arguments(possible_command), new_message.stream );
140 else if (check_sum == pwd_command_checksum)
141 this->pwd_command( get_arguments(possible_command), new_message.stream );
142 else if (check_sum == cat_command_checksum)
143 this->cat_command( get_arguments(possible_command), new_message.stream );
144 else if (check_sum == break_command_checksum)
145 this->break_command(get_arguments(possible_command),new_message.stream );
146 else if (check_sum == reset_command_checksum)
147 this->reset_command(get_arguments(possible_command),new_message.stream );
148 else if (check_sum == dfu_command_checksum)
149 this->dfu_command(get_arguments(possible_command),new_message.stream );
150 else if (check_sum == help_command_checksum)
151 this->help_command(get_arguments(possible_command),new_message.stream );
152 else if (check_sum == version_command_checksum)
153 this->version_command(get_arguments(possible_command),new_message.stream );
154 else if (check_sum == get_command_checksum)
155 this->get_command(get_arguments(possible_command),new_message.stream );
156 else if (check_sum == set_temp_command_checksum)
157 this->set_temp_command(get_arguments(possible_command),new_message.stream );
158 else if (check_sum == mem_command_checksum)
159 this->mem_command(get_arguments(possible_command),new_message.stream );
160
161 }
162
163 // Convert a path indication ( absolute or relative ) into a path ( absolute )
164 string SimpleShell::absolute_from_relative( string path ){
165 if( path[0] == '/' ){ return path; }
166 if( path[0] == '.' ){ return this->current_path; }
167 return this->current_path + path;
168 }
169
170 // Act upon an ls command
171 // Convert the first parameter into an absolute path, then list the files in that path
172 void SimpleShell::ls_command( string parameters, StreamOutput* stream ){
173 string folder = this->absolute_from_relative( parameters );
174 DIR* d;
175 struct dirent* p;
176 d = opendir(folder.c_str());
177 if(d != NULL) {
178 while((p = readdir(d)) != NULL) { stream->printf("%s\r\n", lc(string(p->d_name)).c_str()); }
179 closedir(d);
180 } else {
181 stream->printf("Could not open directory %s \r\n", folder.c_str());
182 }
183 }
184
185 // Change current absolute path to provided path
186 void SimpleShell::cd_command( string parameters, StreamOutput* stream ){
187 string folder = this->absolute_from_relative( parameters );
188 if( folder[folder.length()-1] != '/' ){ folder += "/"; }
189 DIR *d;
190 d = opendir(folder.c_str());
191 if(d == NULL) {
192 stream->printf("Could not open directory %s \r\n", folder.c_str() );
193 }else{
194 this->current_path = folder;
195 closedir(d);
196 }
197 }
198
199 // Responds with the present working directory
200 void SimpleShell::pwd_command( string parameters, StreamOutput* stream ){
201 stream->printf("%s\r\n", this->current_path.c_str());
202 }
203
204 // Output the contents of a file, first parameter is the filename, second is the limit ( in number of lines to output )
205 void SimpleShell::cat_command( string parameters, StreamOutput* stream ){
206
207 // Get parameters ( filename and line limit )
208 string filename = this->absolute_from_relative(shift_parameter( parameters ));
209 string limit_paramater = shift_parameter( parameters );
210 int limit = -1;
211 if( limit_paramater != "" )
212 {
213 char* e = NULL;
214 limit = strtol(limit_paramater.c_str(), &e, 10);
215 if (e <= limit_paramater.c_str())
216 limit = -1;
217 }
218
219 // Open file
220 FILE *lp = fopen(filename.c_str(), "r");
221 if(lp == NULL) {
222 stream->printf("File not found: %s\r\n", filename.c_str());
223 return;
224 }
225 string buffer;
226 int c;
227 int newlines = 0;
228
229 // Print each line of the file
230 while ((c = fgetc (lp)) != EOF){
231 buffer.append((char *)&c, 1);
232 if( char(c) == '\n' ){
233 newlines++;
234 stream->puts(buffer.c_str());
235 buffer.clear();
236 }
237 if( newlines == limit ){ break; }
238 };
239 fclose(lp);
240
241 }
242
243 // show free memory
244 void SimpleShell::mem_command( string parameters, StreamOutput* stream){
245 bool verbose= shift_parameter( parameters ).find_first_of("Vv") != string::npos ;
246 unsigned long heap= (unsigned long)_sbrk(0);
247 unsigned long m= g_maximumHeapAddress - heap;
248 stream->printf("Unused Heap: %lu bytes\r\n", m);
249
250 heapWalk(stream, verbose);
251 }
252
253 static uint32_t getDeviceType() {
254 #define IAP_LOCATION 0x1FFF1FF1
255 uint32_t command[1];
256 uint32_t result[5];
257 typedef void (*IAP)(uint32_t*, uint32_t*);
258 IAP iap = (IAP) IAP_LOCATION;
259
260 __disable_irq();
261
262 command[0] = 54;
263 iap(command, result);
264
265 __enable_irq();
266
267 return result[1];
268 }
269
270 // print out build version
271 void SimpleShell::version_command( string parameters, StreamOutput* stream){
272 Version vers;
273 uint32_t dev= getDeviceType();
274 const char* mcu= (dev&0x00100000)?"LPC1769":"LPC1768";
275 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);
276 }
277
278 // Reset the system
279 void SimpleShell::reset_command( string parameters, StreamOutput* stream){
280 stream->printf("Smoothie out. Peace. Rebooting in 5 seconds...\r\n");
281 this->reset_delay_secs= 5; // reboot in 5 seconds
282 }
283
284 // go into dfu boot mode
285 void SimpleShell::dfu_command( string parameters, StreamOutput* stream){
286 stream->printf("Entering boot mode...\r\n");
287 system_reset(true);
288 }
289
290 // Break out into the MRI debugging system
291 void SimpleShell::break_command( string parameters, StreamOutput* stream){
292 stream->printf("Entering MRI debug mode...\r\n");
293 __debugbreak();
294 }
295
296 // used to test out the get public data events
297 void SimpleShell::get_command( string parameters, StreamOutput* stream){
298 int what= get_checksum(shift_parameter( parameters ));
299 void *returned_data;
300
301 if(what == get_temp_command_checksum) {
302 string type= shift_parameter( parameters );
303 bool ok= this->kernel->public_data->get_value( temperature_control_checksum, get_checksum(type), current_temperature_checksum, &returned_data );
304
305 if(ok) {
306 struct pad_temperature temp= *static_cast<struct pad_temperature*>(returned_data);
307 stream->printf("%s temp: %f/%f @%d\r\n", type.c_str(), temp.current_temperature, temp.target_temperature, temp.pwm);
308 }else{
309 stream->printf("%s is not a known temperature device\r\n", type.c_str());
310 }
311
312 }else if(what == get_pos_command_checksum) {
313 bool ok= this->kernel->public_data->get_value( robot_checksum, current_position_checksum, &returned_data );
314
315 if(ok) {
316 double *pos= static_cast<double *>(returned_data);
317 stream->printf("Position X: %f, Y: %f, Z: %f\r\n", pos[0], pos[1], pos[2]);
318
319 }else{
320 stream->printf("get pos command failed\r\n");
321 }
322 }
323 }
324
325 // used to test out the get public data events
326 void SimpleShell::set_temp_command( string parameters, StreamOutput* stream){
327 string type= shift_parameter( parameters );
328 string temp= shift_parameter( parameters );
329 double t= temp.empty() ? 0.0 : strtod(temp.c_str(), NULL);
330 bool ok= this->kernel->public_data->set_value( temperature_control_checksum, get_checksum(type), &t );
331
332 if(ok) {
333 stream->printf("%s temp set to: %3.1f\r\n", type.c_str(), t);
334 }else{
335 stream->printf("%s is not a known temperature device\r\n", type.c_str());
336 }
337 }
338
339 void SimpleShell::help_command( string parameters, StreamOutput* stream ){
340 stream->printf("Commands:\r\n");
341 stream->printf("version\r\n");
342 stream->printf("mem [-v]\r\n");
343 stream->printf("ls [folder]\r\n");
344 stream->printf("cd folder\r\n");
345 stream->printf("pwd\r\n");
346 stream->printf("cat file [limit]\r\n");
347 stream->printf("play file [-q]\r\n");
348 stream->printf("progress - shows progress of current play\r\n");
349 stream->printf("abort - abort currently playing file\r\n");
350 stream->printf("reset - reset smoothie\r\n");
351 stream->printf("dfu - enter dfu boot loader\r\n");
352 stream->printf("break - break into debugger\r\n");
353 stream->printf("config-get [<configuration_source>] <configuration_setting>\r\n");
354 stream->printf("config-set [<configuration_source>] <configuration_setting> <value>\r\n");
355 stream->printf("config-load [<file_name>]\r\n");
356 stream->printf("get temp [bed|hotend]\r\n");
357 stream->printf("set_temp bed|hotend 185\r\n");
358 stream->printf("get pos\r\n");
359 }
360