|
@@ -243,13 +243,15 @@ void menu_info_board() {
|
243
|
243
|
STATIC_ITEM_P(PSTR(MACHINE_NAME)); // My3DPrinter
|
244
|
244
|
STATIC_ITEM_P(PSTR(WEBSITE_URL)); // www.my3dprinter.com
|
245
|
245
|
VALUE_ITEM_P(MSG_INFO_EXTRUDERS, STRINGIFY(EXTRUDERS), SS_CENTER); // Extruders: 2
|
246
|
|
- STATIC_ITEM(
|
247
|
|
- TERN_(AUTO_BED_LEVELING_3POINT, MSG_3POINT_LEVELING) // 3-Point Leveling
|
248
|
|
- TERN_(AUTO_BED_LEVELING_LINEAR, MSG_LINEAR_LEVELING) // Linear Leveling
|
249
|
|
- TERN_(AUTO_BED_LEVELING_BILINEAR, MSG_BILINEAR_LEVELING) // Bi-linear Leveling
|
250
|
|
- TERN_(AUTO_BED_LEVELING_UBL, MSG_UBL_LEVELING) // Unified Bed Leveling
|
251
|
|
- TERN_(MESH_BED_LEVELING, MSG_MESH_LEVELING) // Mesh Leveling
|
252
|
|
- );
|
|
246
|
+ #if HAS_BED_LEVELING
|
|
247
|
+ STATIC_ITEM(
|
|
248
|
+ TERN_(AUTO_BED_LEVELING_3POINT, MSG_3POINT_LEVELING) // 3-Point Leveling
|
|
249
|
+ TERN_(AUTO_BED_LEVELING_LINEAR, MSG_LINEAR_LEVELING) // Linear Leveling
|
|
250
|
+ TERN_(AUTO_BED_LEVELING_BILINEAR, MSG_BILINEAR_LEVELING) // Bi-linear Leveling
|
|
251
|
+ TERN_(AUTO_BED_LEVELING_UBL, MSG_UBL_LEVELING) // Unified Bed Leveling
|
|
252
|
+ TERN_(MESH_BED_LEVELING, MSG_MESH_LEVELING) // Mesh Leveling
|
|
253
|
+ );
|
|
254
|
+ #endif
|
253
|
255
|
END_SCREEN();
|
254
|
256
|
}
|
255
|
257
|
|