Rename ultralcd => marlinui

This commit is contained in:
Scott Lahteine
2020-10-16 19:36:25 -05:00
parent 0f6fc48f85
commit eaf6777a66
93 changed files with 105 additions and 107 deletions

View File

@@ -45,7 +45,7 @@
#if ENABLED(EXTENSIBLE_UI)
#include "../ultralcd.h"
#include "../marlinui.h"
#include "../../gcode/queue.h"
#include "../../module/motion.h"
#include "../../module/planner.h"
@@ -1053,11 +1053,9 @@ namespace ExtUI {
} // namespace ExtUI
// At the moment, we piggy-back off the ultralcd calls, but this could be cleaned up in the future
// At the moment we hook into MarlinUI methods, but this could be cleaned up in the future
void MarlinUI::init() {
ExtUI::onStartup();
}
void MarlinUI::init() { ExtUI::onStartup(); }
void MarlinUI::update() { ExtUI::onIdle(); }