MarlinFirmware / Marlin

Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine.
https://marlinfw.org
GNU General Public License v3.0
15.95k stars 19.08k forks source link

In PROUI rename MPCTEMP_START to MPC_STARTED as used in EXTUI #27002

Closed ellensp closed 3 weeks ago

ellensp commented 3 weeks ago

Description

Compile error: Marlin\src\module\temperature.cpp: error: 'MPCTEMP_START' is not a member of 'ExtUI::mpcresultt' 1230 | TERN(EXTENSIBLE_UI, ExtUI::onMPCTuning(ExtUI::mpcresult_t::MPCTEMP_START));

was modified for proui to use EXTUI, but proui uses MPCTEMP_START while EXTUI uses MPC_STARTED

Renamed MPCTEMP_START to MPC_STARTED

Requirements

MPCTEMP and EXTUI user interface

Benefits

Builds as expected

Configurations

https://github.com/MarlinFirmware/Marlin/files/15076106/Configuration.zip

Related Issues

https://github.com/MarlinFirmware/Marlin/issues/26997