Added suport for multiline G-code commands in the LCD menus
This commit is contained in:
parent
865ca0ef04
commit
dd301be52d
|
@ -199,7 +199,7 @@ void Stop();
|
||||||
|
|
||||||
bool IsStopped();
|
bool IsStopped();
|
||||||
|
|
||||||
void enquecommand(const char *cmd); //put an ASCII command at the end of the current buffer.
|
bool enquecommand(const char *cmd); //put an ASCII command at the end of the current buffer or return false when it is full
|
||||||
void enquecommand_P(const char *cmd); //put an ASCII command at the end of the current buffer, read from flash
|
void enquecommand_P(const char *cmd); //put an ASCII command at the end of the current buffer, read from flash
|
||||||
void prepare_arc_move(char isclockwise);
|
void prepare_arc_move(char isclockwise);
|
||||||
void clamp_to_software_endstops(float target[3]);
|
void clamp_to_software_endstops(float target[3]);
|
||||||
|
|
|
@ -454,9 +454,12 @@ void serial_echopair_P(const char *s_P, unsigned long v)
|
||||||
//adds an command to the main command buffer
|
//adds an command to the main command buffer
|
||||||
//thats really done in a non-safe way.
|
//thats really done in a non-safe way.
|
||||||
//needs overworking someday
|
//needs overworking someday
|
||||||
void enquecommand(const char *cmd)
|
//(or return false if it failed to do so)
|
||||||
|
bool enquecommand(const char *cmd)
|
||||||
{
|
{
|
||||||
if(buflen < BUFSIZE)
|
if(buflen >= BUFSIZE)
|
||||||
|
return false;
|
||||||
|
else
|
||||||
{
|
{
|
||||||
//this is dangerous if a mixing of serial and this happens
|
//this is dangerous if a mixing of serial and this happens
|
||||||
strcpy(&(cmdbuffer[bufindw][0]),cmd);
|
strcpy(&(cmdbuffer[bufindw][0]),cmd);
|
||||||
|
@ -466,6 +469,7 @@ void enquecommand(const char *cmd)
|
||||||
SERIAL_ECHOLNPGM("\"");
|
SERIAL_ECHOLNPGM("\"");
|
||||||
bufindw= (bufindw + 1)%BUFSIZE;
|
bufindw= (bufindw + 1)%BUFSIZE;
|
||||||
buflen += 1;
|
buflen += 1;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
|
int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
|
||||||
|
|
||||||
|
const char* pgcode_seq= NULL; /* pointer to the current line in the active sequence of commands, or NULL when none */
|
||||||
|
|
||||||
/* Configuration settings */
|
/* Configuration settings */
|
||||||
int plaPreheatHotendTemp;
|
int plaPreheatHotendTemp;
|
||||||
int plaPreheatHPBTemp;
|
int plaPreheatHPBTemp;
|
||||||
|
@ -76,6 +78,7 @@ static void lcd_quick_feedback();//Cause an LCD refresh, and give the user visua
|
||||||
static void menu_action_back(menuFunc_t data);
|
static void menu_action_back(menuFunc_t data);
|
||||||
static void menu_action_submenu(menuFunc_t data);
|
static void menu_action_submenu(menuFunc_t data);
|
||||||
static void menu_action_gcode(const char* pgcode);
|
static void menu_action_gcode(const char* pgcode);
|
||||||
|
static void menu_action_gcode_next();
|
||||||
static void menu_action_function(menuFunc_t data);
|
static void menu_action_function(menuFunc_t data);
|
||||||
static void menu_action_sdfile(const char* filename, char* longFilename);
|
static void menu_action_sdfile(const char* filename, char* longFilename);
|
||||||
static void menu_action_sddirectory(const char* filename, char* longFilename);
|
static void menu_action_sddirectory(const char* filename, char* longFilename);
|
||||||
|
@ -1164,7 +1167,37 @@ static void lcd_quick_feedback()
|
||||||
/** Menu action functions **/
|
/** Menu action functions **/
|
||||||
static void menu_action_back(menuFunc_t data) { lcd_goto_menu(data); }
|
static void menu_action_back(menuFunc_t data) { lcd_goto_menu(data); }
|
||||||
static void menu_action_submenu(menuFunc_t data) { lcd_goto_menu(data); }
|
static void menu_action_submenu(menuFunc_t data) { lcd_goto_menu(data); }
|
||||||
static void menu_action_gcode(const char* pgcode) { enquecommand_P(pgcode); }
|
|
||||||
|
static void menu_action_gcode(const char* pgcode)
|
||||||
|
{
|
||||||
|
// No more calling enquecommand_P(pgcode) as it allows only one command!
|
||||||
|
pgcode_seq= pgcode;
|
||||||
|
menu_action_gcode_next();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void menu_action_gcode_next()
|
||||||
|
{
|
||||||
|
// Inject the next command from the pending sequence, when not empty.
|
||||||
|
char cmd[30];
|
||||||
|
if(!pgcode_seq) return;
|
||||||
|
// Get the next 30 chars from the sequence of gcodes to run
|
||||||
|
strncpy_P(cmd, pgcode_seq, sizeof(cmd)-1);
|
||||||
|
cmd[sizeof(cmd)-1]= 0;
|
||||||
|
// Look for the end of line, or the end of sequence
|
||||||
|
size_t i= 0;
|
||||||
|
char c;
|
||||||
|
while( (c= cmd[i]) && c!='\n' )
|
||||||
|
++i; // look for the end of this gcode command
|
||||||
|
cmd[i]= 0;
|
||||||
|
if(!enquecommand(cmd)) // buffer was full, will retry later
|
||||||
|
return;
|
||||||
|
if(c)
|
||||||
|
pgcode_seq+= i+1; // move to next command
|
||||||
|
else
|
||||||
|
pgcode_seq= NULL; // mark the end of the sequence of gcodes
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void menu_action_function(menuFunc_t data) { (*data)(); }
|
static void menu_action_function(menuFunc_t data) { (*data)(); }
|
||||||
static void menu_action_sdfile(const char* filename, char* longFilename)
|
static void menu_action_sdfile(const char* filename, char* longFilename)
|
||||||
{
|
{
|
||||||
|
@ -1257,6 +1290,8 @@ void lcd_update()
|
||||||
|
|
||||||
lcd_buttons_update();
|
lcd_buttons_update();
|
||||||
|
|
||||||
|
menu_action_gcode_next(); // inject the next pending command in the pending sequence (if any)
|
||||||
|
|
||||||
#if (SDCARDDETECT > 0)
|
#if (SDCARDDETECT > 0)
|
||||||
if((IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()))
|
if((IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue