Browse Source

Power Supply 0 as "General"

pull/1/head
Tannoo 8 years ago
committed by Scott Lahteine
parent
commit
54173c80ad
  1. 8
      Marlin/ultralcd.cpp

8
Marlin/ultralcd.cpp

@ -2696,13 +2696,13 @@ void kill_screen(const char* lcd_msg) {
STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
#ifdef POWER_SUPPLY
#if (POWER_SUPPLY == 1)
#if POWER_SUPPLY == 0
STATIC_ITEM(MSG_INFO_PSU ": Generic", true);
#elif POWER_SUPPLY == 1
STATIC_ITEM(MSG_INFO_PSU ": ATX", true); // Power Supply: ATX
#elif (POWER_SUPPLY == 2)
#elif POWER_SUPPLY == 2
STATIC_ITEM(MSG_INFO_PSU ": XBox", true); // Power Supply: XBox
#endif
#endif // POWER_SUPPLY
END_SCREEN();
}

Loading…
Cancel
Save