Add ADVANCED_PAUSE_FEATURE include

This commit is contained in:
teemuatlut 2018-02-22 20:28:46 +02:00
parent 93cc3a8492
commit 5968a3e60e
2 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,7 @@
#include "../libs/buzzer.h"
#include "../libs/nozzle.h"
#include "pause.h"
// private:

View File

@ -71,6 +71,10 @@
#include "../feature/fwretract.h"
#endif
#if ENABLED(ADVANCED_PAUSE_FEATURE)
#include "../feature/pause.h"
#endif
#pragma pack(push, 1) // No padding between variables
typedef struct PID { float Kp, Ki, Kd; } PID;