remove unused PowerKill()

This commit is contained in:
Stefan Kalscheuer
2023-06-24 14:09:27 +02:00
parent 1822172d44
commit 33c91b345e

View File

@@ -19,7 +19,6 @@
*/ */
#include "Arduino.h" #include "Arduino.h"
#include <inttypes.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
@@ -2102,20 +2101,6 @@ void AnycubicTouchscreenClass::GetCommandFromTFT() {
} }
#endif #endif
void PowerKill() {
#ifdef POWER_OUTAGE_TEST
Temp_Buf_Extuder_Temperature = thermalManager.degTargetHotend(0);
Temp_Buf_Bed_Temperature = thermalManager.degTargetBed();
if (PowerTestFlag == true) {
thermalManager.disable_all_heaters();
OutageSave();
PowerTestFlag = false;
thermalManager.setTargetHotend(Temp_Buf_Extuder_Temperature, 0);
thermalManager.setTargetBed(Temp_Buf_Bed_Temperature);
}
#endif
}
#if ENABLED(KNUTWURST_CHIRON) #if ENABLED(KNUTWURST_CHIRON)
void AnycubicTouchscreenClass::LevelingDone() { void AnycubicTouchscreenClass::LevelingDone() {
SENDLINE_DBG_PGM("J25", "TFT Serial Debug: Auto leveling done... J25"); SENDLINE_DBG_PGM("J25", "TFT Serial Debug: Auto leveling done... J25");