Browse Source

Remove useless extern in cmdqueue.cpp

Guðni Már Gilbert 2 years ago
parent
commit
3cfd706fff
1 changed files with 0 additions and 2 deletions
  1. 0 2
      Firmware/cmdqueue.cpp

+ 0 - 2
Firmware/cmdqueue.cpp

@@ -2,8 +2,6 @@
 #include "cardreader.h"
 #include "ultralcd.h"
 
-extern bool Stopped;
-
 // Reserve BUFSIZE lines of length MAX_CMD_SIZE plus CMDBUFFER_RESERVE_FRONT.
 char cmdbuffer[BUFSIZE * (MAX_CMD_SIZE + 1) + CMDBUFFER_RESERVE_FRONT];
 // Head of the circular buffer, where to read.