💡 Misc. cleanup, comments
This commit is contained in:
committed by
Scott Lahteine
parent
f8e177a43e
commit
2ee4a667e1
@@ -1459,7 +1459,7 @@ void DGUSScreenHandler::LanguagePInit() {
|
||||
}
|
||||
}
|
||||
|
||||
void DGUSScreenHandler::DGUS_ExtrudeLoadInit(void) {
|
||||
void DGUSScreenHandler::DGUS_ExtrudeLoadInit() {
|
||||
ex_filament.ex_length = distanceFilament;
|
||||
ex_filament.ex_load_unload_flag = 0;
|
||||
ex_filament.ex_need_time = filamentSpeed_mm_s;
|
||||
@@ -1469,7 +1469,7 @@ void DGUSScreenHandler::DGUS_ExtrudeLoadInit(void) {
|
||||
ex_filament.ex_tick_start = 0;
|
||||
}
|
||||
|
||||
void DGUSScreenHandler::DGUS_RunoutInit(void) {
|
||||
void DGUSScreenHandler::DGUS_RunoutInit() {
|
||||
#if PIN_EXISTS(MT_DET_1)
|
||||
SET_INPUT_PULLUP(MT_DET_1_PIN);
|
||||
#endif
|
||||
@@ -1479,7 +1479,7 @@ void DGUSScreenHandler::DGUS_RunoutInit(void) {
|
||||
runout_mks.runout_status = UNRUNOUT_STATUS;
|
||||
}
|
||||
|
||||
void DGUSScreenHandler::DGUS_Runout_Idle(void) {
|
||||
void DGUSScreenHandler::DGUS_Runout_Idle() {
|
||||
#if ENABLED(DGUS_MKS_RUNOUT_SENSOR)
|
||||
// scanf runout pin
|
||||
switch (runout_mks.runout_status) {
|
||||
|
@@ -94,10 +94,10 @@ public:
|
||||
static void DGUS_LanguageDisplay(uint8_t var);
|
||||
static void TMC_ChangeConfig(DGUS_VP_Variable &var, void *val_ptr);
|
||||
static void GetTurnOffCtrl(DGUS_VP_Variable &var, void *val_ptr);
|
||||
static void LanguagePInit(void);
|
||||
static void DGUS_Runout_Idle(void);
|
||||
static void DGUS_RunoutInit(void);
|
||||
static void DGUS_ExtrudeLoadInit(void);
|
||||
static void LanguagePInit();
|
||||
static void DGUS_Runout_Idle();
|
||||
static void DGUS_RunoutInit();
|
||||
static void DGUS_ExtrudeLoadInit();
|
||||
static void LCD_BLK_Adjust(DGUS_VP_Variable &var, void *val_ptr);
|
||||
static void SD_FileBack(DGUS_VP_Variable &var, void *val_ptr);
|
||||
|
||||
|
Reference in New Issue
Block a user