Skip to content

Commit 312428d

Browse files
committed
Handle default case for unsupported trinamic steppers #189
1 parent 2282e7f commit 312428d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Marlin/src/lcd/extui/lib/dgus_creality/creality_touch/AxisSettingsHandler.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ void AxisSettingsHandler::HandleNavigation(DGUS_VP_Variable &var, void *val_ptr)
122122
#endif
123123
break;
124124
#endif
125+
126+
default:
127+
// Too bad
128+
break;
125129
}
126130
#endif
127131

@@ -198,6 +202,10 @@ void AxisSettingsHandler::HandleBackNavigation(DGUS_VP_Variable &var, void *val_
198202
#endif
199203
break;
200204
#endif
205+
206+
default:
207+
// Too bad
208+
break;
201209
}
202210
#endif
203211

0 commit comments

Comments
 (0)