b8ba3b7647 
								
							
								 
							
						 
						
							
							
								
								Use 'sq' macro where possible  
							
							
 
							
						 
						
							9 years ago  
				
					
						
							
							
								 
						
							
							
								492bc536bf 
								
							
								 
							
						 
						
							
							
								
								Modify debug methods to take PSTR  
							
							
 
							
						 
						
							9 years ago  
				
					
						
							
							
								 
						
							
							
								8d54ffbf05 
								
							
								 
							
						 
						
							
							
								
								Adjust vector_3 code with const, some optimization  
							
							
 
							
						 
						
							9 years ago  
				
					
						
							
							
								 
						
							
							
								ea0dbee3c9 
								
							
								 
							
						 
						
							
							
								
								Enable ABL by type, support bilinear on cartesian  
							
							
 
							
						 
						
							9 years ago  
				
					
						
							
							
								 
						
							
							
								0da744b7b0 
								
							
								 
							
						 
						
							
							
								
								Further cleanup of comments, partial Doxygen-style  
							
							... 
							
							
 
							
							Following up on #3231  
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								5e5d250832 
								
							
								 
							
						 
						
							
							
								
								Added gplv3 header to all Marlin files  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								0c7f7ebcfb 
								
							
								 
							
						 
						
							
							
								
								Styling adjustments (PR#2668 & PR#2670)  
							
							... 
							
							
 
							
							Keep "astyled" reformatting 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								6292d9e815 
								
							
								 
							
						 
						
							
							
								
								Rename ENABLE_AUTO_BED_LEVELING  
							
							... 
							
							
 
							
							With the introduction of the #if ENABLED(…)
reads better than 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								58cfcd4239 
								
							
								 
							
						 
						
							
							
								
								Overridable Options - Part 5  
							
							... 
							
							
 
							
							Apply `ENABLED` / `DISABLED` macros to files needing only a small
number of changes. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								1e5c18bb14 
								
							
								 
							
						 
						
							
							
								
								Add code_value_short and SERIAL_CHAR  
							
							
 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								460f73056b 
								
							
								 
							
						 
						
							
							
								
								Fix ECHOPAIR ambiguity  
							
							... 
							
							
 
							
							- Also patch up some warnings 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								32331faee4 
								
							
								 
							
						 
						
							
							
								
								Prettify Bed Level Correction Matrix  
							
							... 
							
							
 
							
							- Put + in front of positive values in the output 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								2f3c77b751 
								
							
								 
							
						 
						
							
							
								
								Fix decimal places in G29 Bed Equation Coeficients  
							
							
 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								d085725c86 
								
							
								 
							
						 
						
							
							
								
								More sanity-checking for ABL  
							
							... 
							
							
 
							
							- Moved sanity-checks to Marlin_main.cpp
- Applied to other configuration files
- Fixed formatting of ABL output
- Passing verbose level to probe_pt
- Miscellaneous cleanup
- Put CONFIG_STEPPERS_TOSHIBA into Configuration.h 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								d74aabf259 
								
							
								 
							
						 
						
							
							
								
								Revert "Change Auto_Bed_Leveling to Auto_Bed_Compensation"  
							
							
 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								825c46024d 
								
							
								 
							
						 
						
							
							
								
								Update vector_3.cpp  
							
							... 
							
							
 
							
							Changed AUTO_BED_LEVEL to AUTO_BED_COMPENSATION 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								cf325ba240 
								
							
								 
							
						 
						
							
							
								
								Fix issue 935: error in matrix calculation  
							
							
 
							
						 
						
							11 years ago  
				
					
						
							
							
								 
						
							
							
								15d6116188 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #689  from cajun-rat/tidy  
							
							... 
							
							
 
							
							Use C++ initialization list 
							
						 
						
							12 years ago  
				
					
						
							
							
								 
						
							
							
								17d6d965dc 
								
							
								 
							
						 
						
							
							
								
								Use C++ initialization list  
							
							... 
							
							
 
							
							This is the recommended approach for object initialization. The change
doesn't affect binary size (although in theory it could make it smaller). 
							
						 
						
							12 years ago  
				
					
						
							
							
								 
						
							
							
								5bde7fcb28 
								
							
								 
							
						 
						
							
							
								
								Minor code and comment polishing  
							
							
 
							
						 
						
							12 years ago  
				
					
						
							
							
								 
						
							
							
								b64661070e 
								
							
								 
							
						 
						
							
							
								
								Fixed the plane vector equation to a simpler one (only dependent on the normal)  
							
							... 
							
							
 
							
							Removed the calculation of the inverse matrix since the rotation matrix is orthogonal, therefore inverted == transposed.
Much simpler and mathematically robust. 
							
						 
						
							12 years ago  
				
					
						
							
							
								 
						
							
							
								253dfc4bc1 
								
							
								 
							
						 
						
							
							
								
								Bed Auto Leveling feature  
							
							... 
							
							
 
							
							Check the Readme for instruction how to enable and configure the feature 
							
						 
						
							12 years ago