Trigorilla Pro: Allow for swapped Z-stops
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							e0f60c3811
						
					
				
				
					commit
					3d3c0591e8
				
			| @@ -40,6 +40,8 @@ | |||||||
|  |  | ||||||
| #define DISABLE_JTAG | #define DISABLE_JTAG | ||||||
|  |  | ||||||
|  | //#define SWAPPED_Z_PLUGS | ||||||
|  |  | ||||||
| // | // | ||||||
| // EEPROM | // EEPROM | ||||||
| // | // | ||||||
| @@ -59,10 +61,18 @@ | |||||||
| #define X_STOP_PIN                          PG10 | #define X_STOP_PIN                          PG10 | ||||||
| #define Y_STOP_PIN                          PA12 | #define Y_STOP_PIN                          PA12 | ||||||
| #ifndef Z_MIN_PIN | #ifndef Z_MIN_PIN | ||||||
|   #define Z_MIN_PIN                         PA14 |   #ifdef SWAPPED_Z_PLUGS | ||||||
|  |     #define Z_MIN_PIN                       PA14 | ||||||
|  |   #else | ||||||
|  |     #define Z_MIN_PIN                       PA13 | ||||||
|  |   #endif | ||||||
| #endif | #endif | ||||||
| #ifndef Z_MAX_PIN | #ifndef Z_MAX_PIN | ||||||
|   #define Z_MAX_PIN                         PA13 |   #ifdef SWAPPED_Z_PLUGS | ||||||
|  |     #define Z_MAX_PIN                       PA13 | ||||||
|  |   #else | ||||||
|  |     #define Z_MAX_PIN                       PA14 | ||||||
|  |   #endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| // | // | ||||||
| @@ -185,3 +195,5 @@ | |||||||
|   #define SDSS                              PD2 |   #define SDSS                              PD2 | ||||||
|   #define SD_DETECT_PIN                     -1 |   #define SD_DETECT_PIN                     -1 | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  | #undef SWAPPED_Z_PLUGS | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user