Rename command buffer var

This commit is contained in:
Scott Lahteine
2019-09-01 20:21:11 -05:00
parent d59d9b5973
commit a2e412c0ce
4 changed files with 10 additions and 10 deletions

View File

@ -64,7 +64,7 @@ uint8_t GCodeQueue::length = 0, // Count of commands in the queue
GCodeQueue::index_r = 0, // Ring buffer read position
GCodeQueue::index_w = 0; // Ring buffer write position
char GCodeQueue::buffer[BUFSIZE][MAX_CMD_SIZE];
char GCodeQueue::command_buffer[BUFSIZE][MAX_CMD_SIZE];
/*
* The port that the command was received on
@ -135,7 +135,7 @@ bool GCodeQueue::_enqueue(const char* cmd, bool say_ok/*=false*/
#endif
) {
if (*cmd == ';' || length >= BUFSIZE) return false;
strcpy(buffer[index_w], cmd);
strcpy(command_buffer[index_w], cmd);
_commit_command(say_ok
#if NUM_SERIAL > 1
, pn
@ -242,7 +242,7 @@ void GCodeQueue::ok_to_send() {
if (!send_ok[index_r]) return;
SERIAL_ECHOPGM(MSG_OK);
#if ENABLED(ADVANCED_OK)
char* p = buffer[index_r];
char* p = command_buffer[index_r];
if (*p == 'N') {
SERIAL_ECHO(' ');
SERIAL_ECHO(*p++);
@ -553,7 +553,7 @@ void GCodeQueue::get_serial_commands() {
// Skip empty lines and comments
if (!sd_count) { thermalManager.manage_heater(); continue; }
buffer[index_w][sd_count] = '\0'; // terminate string
command_buffer[index_w][sd_count] = '\0'; // terminate string
sd_count = 0; // clear sd line buffer
_commit_command(false);
@ -574,7 +574,7 @@ void GCodeQueue::get_serial_commands() {
#if ENABLED(PAREN_COMMENTS)
&& ! sd_comment_paren_mode
#endif
) buffer[index_w][sd_count++] = sd_char;
) command_buffer[index_w][sd_count++] = sd_char;
}
}
}
@ -610,7 +610,7 @@ void GCodeQueue::advance() {
#if ENABLED(SDSUPPORT)
if (card.flag.saving) {
char* command = buffer[index_r];
char* command = command_buffer[index_r];
if (is_M29(command)) {
// M29 closes the file
card.closefile();