Support for TFT & Touch Screens (#18130)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							bba157e5bd
						
					
				
				
					commit
					117df87d19
				
			| @@ -1,3 +1,3 @@ | ||||
| #!/usr/bin/env bash | ||||
|  | ||||
| eval "echo '#define ${@}' >>Marlin/Configuration_adv.h" | ||||
| eval "echo '#define ${@}' | cat - Marlin/Configuration.h > temp && mv temp Marlin/Configuration.h" | ||||
|   | ||||
| @@ -1,15 +1,18 @@ | ||||
| #!/usr/bin/env bash | ||||
|  | ||||
| IFS=: read -r PART1 PART2 <<< "$@" | ||||
| [ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="$PART2" ; } \ | ||||
|                   || { REPO=bugfix-2.0.x   ; RDIR="$PART1" ; } | ||||
| EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples" | ||||
|  | ||||
| restore_configs | ||||
|  | ||||
| EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/config/examples" | ||||
|  | ||||
| cd Marlin | ||||
|  | ||||
| wget -q "$EXAMPLES/$@/Configuration.h"     -O wgot && mv wgot Configuration.h | ||||
| wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h | ||||
| wget -q "$EXAMPLES/$@/_Bootscreen.h"       -O wgot && mv wgot _Bootscreen.h | ||||
| wget -q "$EXAMPLES/$@/_Statusscreen.h"     -O wgot && mv wgot _Statusscreen.h | ||||
| wget -q "$EXAMPLES/$RDIR/Configuration.h"     -O wgot && mv wgot Configuration.h | ||||
| wget -q "$EXAMPLES/$RDIR/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h | ||||
| wget -q "$EXAMPLES/$RDIR/_Bootscreen.h"       -O wgot && mv wgot _Bootscreen.h | ||||
| wget -q "$EXAMPLES/$RDIR/_Statusscreen.h"     -O wgot && mv wgot _Statusscreen.h | ||||
| rm -f wgot | ||||
|  | ||||
| cd - >/dev/null | ||||
|   | ||||
		Reference in New Issue
	
	Block a user