Fix compiler warnings: sketch/Marlin_main.cpp: In function 'void process_commands()':
sketch/Marlin_main.cpp:6311:3: warning: 'filament' may be used uninitialized in this function [-Wmaybe-uninitialized] switch (filament) { sketch/Marlin_main.cpp:6310:44: warning: 'extruder' may be used uninitialized in this function [-Wmaybe-uninitialized] printf_P(PSTR("Extruder: %d; "), extruder);
This commit is contained in:
parent
79057f070b
commit
660a4c0d75
1 changed files with 3 additions and 2 deletions
|
@ -144,6 +144,7 @@
|
|||
#define FILAMENT_DEFAULT 0
|
||||
#define FILAMENT_FLEX 1
|
||||
#define FILAMENT_PVA 2
|
||||
#define FILAMENT_UNDEFINED 255
|
||||
|
||||
// look here for descriptions of G-codes: http://linuxcnc.org/handbook/gcode/g-code.html
|
||||
// http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
|
||||
|
@ -6301,8 +6302,8 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
|
|||
//add storing this information for different load/unload profiles etc. in the future
|
||||
//firmware does not wait for "ok" from mmu
|
||||
|
||||
uint8_t extruder;
|
||||
uint8_t filament;
|
||||
uint8_t extruder = 255;
|
||||
uint8_t filament = FILAMENT_UNDEFINED;
|
||||
|
||||
if(code_seen('E')) extruder = code_value();
|
||||
if(code_seen('F')) filament = code_value();
|
||||
|
|
Loading…
Reference in a new issue