From a434592f2d1a8582fe0360b54a4922b74f4d353e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Sandstr=C3=B6m?= Date: Thu, 14 Sep 2023 14:17:36 +0200 Subject: [PATCH] Remove printout --- grbl/grbl_gcode.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/grbl/grbl_gcode.c b/grbl/grbl_gcode.c index 4b40577..ce95135 100644 --- a/grbl/grbl_gcode.c +++ b/grbl/grbl_gcode.c @@ -68,8 +68,6 @@ void gc_sync_position() // coordinates, respectively. uint8_t gc_execute_line(char *line) { - PRINTF_DEBUG("gc_execute_line\n"); - //printf("gc_execute_line: %s\n",line); if(strlen(line)<2) { return(STATUS_OK); } @@ -124,8 +122,7 @@ uint8_t gc_execute_line(char *line) else { char_counter = 0; } while (line[char_counter] != 0) { // Loop until no more g-code words in line. - - PRINTF_DEBUG("gc_execute_line::while\n"); + //printf("1\n"); // Import the next g-code word, expecting a letter followed by a value. Otherwise, error out. letter = line[char_counter];