Fix variable conflict in ok_to_send (#14351)

2.0.x
LinFor 6 years ago committed by Scott Lahteine
parent c41b005f33
commit 0f6f5132c1

@ -225,9 +225,9 @@ void GCodeQueue::enqueue_now_P(PGM_P const pgcode) {
*/
void GCodeQueue::ok_to_send() {
#if NUM_SERIAL > 1
const int16_t p = port[index_r];
if (p < 0) return;
PORT_REDIRECT(p);
const int16_t pn = port[index_r];
if (pn < 0) return;
PORT_REDIRECT(pn);
#endif
if (!send_ok[index_r]) return;
SERIAL_ECHOPGM(MSG_OK);

Loading…
Cancel
Save