Generalized enqueue_commands_P, and moved them to Marlin_main as they should

This commit is contained in:
Jérémie FRANCOIS
2015-02-07 23:24:20 +01:00
parent dd301be52d
commit 85e5aa4011
8 changed files with 220 additions and 297 deletions

View File

@ -199,8 +199,9 @@ void Stop();
bool IsStopped();
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
bool enquecommand(const char *cmd); //put a single ASCII command at the end of the current buffer or return false when it is full
void enquecommands_P(const char *cmd); //put one or many ASCII commands at the end of the current buffer, read from flash
void prepare_arc_move(char isclockwise);
void clamp_to_software_endstops(float target[3]);