Added new G-Code: M78

This commit is contained in:
João Brázio
2016-04-27 02:13:27 +01:00
parent 4f541c5bb5
commit d6cfcc9c8b
2 changed files with 33 additions and 3 deletions

View File

@@ -65,7 +65,11 @@ typedef unsigned long millis_t;
#include "WString.h"
#include "stopwatch.h"
#if ENABLED(PRINTCOUNTER)
#include "printcounter.h"
#else
#include "stopwatch.h"
#endif
#ifdef USBCON
#if ENABLED(BLUETOOTH)
@@ -364,7 +368,11 @@ extern bool axis_homed[3]; // axis[n].is_homed
#endif
// Print job timer
extern Stopwatch print_job_timer;
#if ENABLED(PRINTCOUNTER)
extern PrintCounter print_job_timer;
#else
extern Stopwatch print_job_timer;
#endif
// Handling multiple extruders pins
extern uint8_t active_extruder;