E3 V2 DWIN cleanup
This commit is contained in:
parent
57a87a278b
commit
250bfac0cc
File diff suppressed because it is too large
Load diff
|
@ -52,8 +52,8 @@ enum processID {
|
||||||
MaxSpeed_value,
|
MaxSpeed_value,
|
||||||
MaxAcceleration,
|
MaxAcceleration,
|
||||||
MaxAcceleration_value,
|
MaxAcceleration_value,
|
||||||
MaxCorner,
|
MaxJerk,
|
||||||
MaxCorner_value,
|
MaxJerk_value,
|
||||||
Step,
|
Step,
|
||||||
Step_value,
|
Step_value,
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ enum processID {
|
||||||
|
|
||||||
#define ICON_MaxSpeed 51
|
#define ICON_MaxSpeed 51
|
||||||
#define ICON_MaxAccelerated 52
|
#define ICON_MaxAccelerated 52
|
||||||
#define ICON_MaxCorner 53
|
#define ICON_MaxJerk 53
|
||||||
#define ICON_Step 54
|
#define ICON_Step 54
|
||||||
#define ICON_PrintSize 55
|
#define ICON_PrintSize 55
|
||||||
#define ICON_Version 56
|
#define ICON_Version 56
|
||||||
|
@ -164,10 +164,10 @@ enum processID {
|
||||||
#define ICON_MaxAccY 64
|
#define ICON_MaxAccY 64
|
||||||
#define ICON_MaxAccZ 65
|
#define ICON_MaxAccZ 65
|
||||||
#define ICON_MaxAccE 66
|
#define ICON_MaxAccE 66
|
||||||
#define ICON_MaxSpeedCornerX 67
|
#define ICON_MaxSpeedJerkX 67
|
||||||
#define ICON_MaxSpeedCornerY 68
|
#define ICON_MaxSpeedJerkY 68
|
||||||
#define ICON_MaxSpeedCornerZ 69
|
#define ICON_MaxSpeedJerkZ 69
|
||||||
#define ICON_MaxSpeedCornerE 70
|
#define ICON_MaxSpeedJerkE 70
|
||||||
#define ICON_StepX 71
|
#define ICON_StepX 71
|
||||||
#define ICON_StepY 72
|
#define ICON_StepY 72
|
||||||
#define ICON_StepZ 73
|
#define ICON_StepZ 73
|
||||||
|
@ -231,7 +231,7 @@ typedef struct {
|
||||||
int16_t print_speed = 100;
|
int16_t print_speed = 100;
|
||||||
float Max_Feedspeed = 0;
|
float Max_Feedspeed = 0;
|
||||||
float Max_Acceleration = 0;
|
float Max_Acceleration = 0;
|
||||||
float Max_Corner = 0;
|
float Max_Jerk = 0;
|
||||||
float Max_Step = 0;
|
float Max_Step = 0;
|
||||||
float Move_X_scale = 0;
|
float Move_X_scale = 0;
|
||||||
float Move_Y_scale = 0;
|
float Move_Y_scale = 0;
|
||||||
|
@ -261,7 +261,7 @@ typedef struct {
|
||||||
char feedspeed_flag;
|
char feedspeed_flag;
|
||||||
#endif
|
#endif
|
||||||
char acc_flag;
|
char acc_flag;
|
||||||
char corner_flag;
|
char jerk_flag;
|
||||||
char step_flag;
|
char step_flag;
|
||||||
} HMI_Flag;
|
} HMI_Flag;
|
||||||
|
|
||||||
|
@ -314,7 +314,7 @@ void HMI_PrintSpeed(void);
|
||||||
|
|
||||||
void HMI_MaxFeedspeedXYZE(void);
|
void HMI_MaxFeedspeedXYZE(void);
|
||||||
void HMI_MaxAccelerationXYZE(void);
|
void HMI_MaxAccelerationXYZE(void);
|
||||||
void HMI_MaxCornerXYZE(void);
|
void HMI_MaxJerkXYZE(void);
|
||||||
void HMI_StepXYZE(void);
|
void HMI_StepXYZE(void);
|
||||||
|
|
||||||
void update_variable(void);
|
void update_variable(void);
|
||||||
|
@ -332,12 +332,12 @@ void Icon_leveling(bool value);
|
||||||
|
|
||||||
// Other
|
// Other
|
||||||
bool Pause_HeatStatus();
|
bool Pause_HeatStatus();
|
||||||
void HMI_StartFrame(const bool with_update); // startup screen
|
void HMI_StartFrame(const bool with_update); // Startup screen
|
||||||
void HMI_MainMenu(void); // main process screen
|
void HMI_MainMenu(void); // Main process screen
|
||||||
void HMI_SelectFile(void); // file page
|
void HMI_SelectFile(void); // File page
|
||||||
void HMI_Printing(void); // print page
|
void HMI_Printing(void); // Print page
|
||||||
void HMI_Prepare(void); // prepare page
|
void HMI_Prepare(void); // Prepare page
|
||||||
void HMI_Control(void); // control page
|
void HMI_Control(void); // Control page
|
||||||
void HMI_Leveling(void); // Level the page
|
void HMI_Leveling(void); // Level the page
|
||||||
void HMI_AxisMove(void); // Axis movement menu
|
void HMI_AxisMove(void); // Axis movement menu
|
||||||
void HMI_Temperature(void); // Temperature menu
|
void HMI_Temperature(void); // Temperature menu
|
||||||
|
@ -352,8 +352,8 @@ void HMI_Tune(void); // Adjust the menu
|
||||||
|
|
||||||
void HMI_MaxSpeed(void); // Maximum speed submenu
|
void HMI_MaxSpeed(void); // Maximum speed submenu
|
||||||
void HMI_MaxAcceleration(void); // Maximum acceleration submenu
|
void HMI_MaxAcceleration(void); // Maximum acceleration submenu
|
||||||
void HMI_MaxCorner(void); // Maximum corner speed submenu
|
void HMI_MaxJerk(void); // Maximum jerk speed submenu
|
||||||
void HMI_Step(void); // transmission ratio
|
void HMI_Step(void); // Transmission ratio
|
||||||
|
|
||||||
void HMI_Init(void);
|
void HMI_Init(void);
|
||||||
void DWIN_Update(void);
|
void DWIN_Update(void);
|
||||||
|
|
Loading…
Reference in a new issue