Move MAX_EXTRUDERS to pins.h
This commit is contained in:
		
							parent
							
								
									5f5a55a0de
								
							
						
					
					
						commit
						ad64723354
					
				| @ -40,7 +40,6 @@ | ||||
| 
 | ||||
| // Change EEPROM version if these are changed:
 | ||||
| #define EEPROM_OFFSET 100 | ||||
| #define MAX_EXTRUDERS 4 | ||||
| 
 | ||||
| /**
 | ||||
|  * V24 EEPROM Layout: | ||||
|  | ||||
| @ -275,6 +275,10 @@ | ||||
|   #define SUICIDE_PIN -1 | ||||
| #endif | ||||
| 
 | ||||
| #ifndef MAX_EXTRUDERS | ||||
|   #define MAX_EXTRUDERS 4 | ||||
| #endif | ||||
| 
 | ||||
| // Marlin needs to account for pins that equal -1
 | ||||
| #define marlinAnalogInputToDigitalPin(p) ((p) == -1 ? -1 : analogInputToDigitalPin(p)) | ||||
| 
 | ||||
|  | ||||
| @ -151,7 +151,7 @@ volatile bool Temperature::temp_meas_ready = false; | ||||
|   millis_t Temperature::next_bed_check_ms; | ||||
| #endif | ||||
| 
 | ||||
| unsigned long Temperature::raw_temp_value[4] = { 0 }; | ||||
| unsigned long Temperature::raw_temp_value[MAX_EXTRUDERS] = { 0 }; | ||||
| unsigned long Temperature::raw_temp_bed_value = 0; | ||||
| 
 | ||||
| // Init min and max temp with extreme values to prevent false errors during startup
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user