Change "Extruder N" to "Filament N"
Change in memory: Flash: -52 bytes SRAM: 0 bytes
This commit is contained in:
parent
03280c48d5
commit
a20a7232a8
|
|
@ -3469,7 +3469,7 @@ static void mmu_M600_load_filament(bool automatic, float nozzle_temp) {
|
|||
slot = SpoolJoin::spooljoin.nextSlot();
|
||||
} else {
|
||||
// Only ask for the slot if automatic/SpoolJoin is off
|
||||
slot = choose_menu_P(_T(MSG_SELECT_EXTRUDER), _T(MSG_EXTRUDER));
|
||||
slot = choose_menu_P(_T(MSG_SELECT_FILAMENT), _T(MSG_FILAMENT));
|
||||
}
|
||||
|
||||
setTargetHotend(nozzle_temp);
|
||||
|
|
|
|||
|
|
@ -29,11 +29,7 @@ struct SChooseFromMenu {
|
|||
};
|
||||
|
||||
SChooseFromMenu TCodeChooseFromMenu() {
|
||||
if (MMU2::mmu2.Enabled()) {
|
||||
return SChooseFromMenu( choose_menu_P(_T(MSG_SELECT_FILAMENT), _T(MSG_FILAMENT)), true );
|
||||
} else {
|
||||
return SChooseFromMenu( choose_menu_P(_T(MSG_SELECT_EXTRUDER), _T(MSG_EXTRUDER)), false );
|
||||
}
|
||||
return SChooseFromMenu( choose_menu_P(_T(MSG_SELECT_FILAMENT), _T(MSG_FILAMENT)), MMU2::mmu2.Enabled() );
|
||||
}
|
||||
|
||||
void TCodes(char *const strchr_pointer, uint8_t codeValue) {
|
||||
|
|
@ -48,7 +44,7 @@ void TCodes(char *const strchr_pointer, uint8_t codeValue) {
|
|||
} else if (strchr_pointer[index] == 'x'){
|
||||
// load to extruder gears; if mmu is not present do nothing
|
||||
if (MMU2::mmu2.Enabled()) {
|
||||
MMU2::mmu2.tool_change(strchr_pointer[index], choose_menu_P(_T(MSG_SELECT_EXTRUDER), _T(MSG_EXTRUDER)));
|
||||
MMU2::mmu2.tool_change(strchr_pointer[index], choose_menu_P(_T(MSG_SELECT_FILAMENT), _T(MSG_FILAMENT)));
|
||||
}
|
||||
} else if (strchr_pointer[index] == 'c'){
|
||||
// load from extruder gears to nozzle (nozzle should be preheated)
|
||||
|
|
|
|||
Loading…
Reference in New Issue