diff --git a/actions.py b/actions.py index 4ab7e7d..c5979f2 100644 --- a/actions.py +++ b/actions.py @@ -190,20 +190,53 @@ class Actions(object): elif setting_value == 'composite': self.change_composite_setting(setting_value) + def check_and_set_output_mode_on_boot(self): + response = str(subprocess.check_output(['tvservice', '-s'])) + if '0x80002' in response or '0x40002' in response: + self.data.update_setting_value('video', 'OUTPUT', 'composite') + else: + self.data.update_setting_value('video', 'OUTPUT', 'hdmi') + def change_composite_setting(self, setting_value): if setting_value == 'composite': mode = self.data.settings['video']['COMPOSITE_TYPE']['value'] aspect = self.data.settings['video']['COMPOSITE_RATIO']['value'] progressive = '' - if self.data.settings['video']['COMPOSITE_PROGRESSIVE']['value'] == 'yes': + if self.data.settings['video']['COMPOSITE_PROGRESSIVE']['value'] == 'on': progressive = 'p' subprocess.call(['tvservice --sdtvon="{} {} {}"'.format(mode, aspect, progressive)],shell=True) self._refresh_frame_buffer() + self.persist_composite_setting(mode, progressive, aspect) @staticmethod def _refresh_frame_buffer(): subprocess.run(["fbset -depth 16; fbset -depth 32; xrefresh -display :0" ], shell=True) + def persist_composite_setting(self, mode, progressive, aspect): + sdtv_mode = '' + sdtv_aspect = '' + print('mode {} , prog {} aspect {} '.format(mode, progressive, aspect)) + if mode == 'PAL' and progressive == 'p': + sdtv_mode = '18' + elif mode == 'PAL' and progressive == '': + sdtv_mode = '2' + elif mode == 'NTSC' and progressive == 'p': + sdtv_mode = '16' + elif mode == 'NTSC' and progressive == '': + sdtv_mode = '0' + + if aspect == '4:3': + sdtv_aspect = '1' + elif aspect == '14:9': + sdtv_aspect = '2' + elif aspect == '16:9': + sdtv_aspect = '3' + + self.update_config_settings(sdtv_mode, sdtv_aspect) + + def update_config_settings(self, sdtv_mode, sdtv_aspect): + self.run_script('set_composite_mode',sdtv_mode, sdtv_aspect) + def switch_dev_mode(self, state): if state == 'on': self.run_script('switch_display_to_hdmi') @@ -227,21 +260,10 @@ class Actions(object): else: self.message_handler.set_message('INFO', 'failed to switch display') - def set_composite_to_pal(self): - self.run_script('set_composite_mode','2') - self.message_handler.set_message('INFO', 'composite set to pal on next restart') - def set_composite_to_ntsc(self): - self.run_script('set_composite_mode','0') - self.message_handler.set_message('INFO', 'composite set to ntsc on next restart') - def run_script(self, script_name, script_argument=''): - try: - subprocess.call(['/home/pi/r_e_c_u_r/dotfiles/{}.sh'.format(script_name),script_argument]) - except Exception as e: - if hasattr(e, 'message'): - error_info = e.message - else: - error_info = e - self.message_handler.set_message('ERROR',error_info) + def run_script(self, script_name, first_argument='', second_argument=''): + print('first arg is {} , second is {}'.format(first_argument,second_argument)) + subprocess.call(['/home/pi/r_e_c_u_r/dotfiles/{}.sh'.format(script_name),first_argument, second_argument ]) + diff --git a/data_centre/json_objects/settings.json b/data_centre/json_objects/settings.json index 96c8dc7..4c7c1e0 100644 --- a/data_centre/json_objects/settings.json +++ b/data_centre/json_objects/settings.json @@ -161,7 +161,7 @@ "off", "on" ], - "value": "off" + "value": "on" }, "COMPOSITE_RATIO": { "action": "change_composite_setting", @@ -170,7 +170,7 @@ "14:9", "16:9" ], - "value": "4:3" + "value": "14:9" }, "COMPOSITE_TYPE": { "action": "change_composite_setting", @@ -178,7 +178,7 @@ "PAL", "NTSC" ], - "value": "PAL" + "value": "NTSC" }, "OUTPUT": { "action": "change_output_mode", diff --git "a/dotfiles/lcd_display_drivers/LCD-show/\r/99-calibration.conf-101-1024x600" "b/dotfiles/lcd_display_drivers/LCD-show/\r/99-calibration.conf-101-1024x600" deleted file mode 100755 index b7bce24..0000000 --- "a/dotfiles/lcd_display_drivers/LCD-show/\r/99-calibration.conf-101-1024x600" +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "4034 31 11 3879" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD-hdmi b/dotfiles/lcd_display_drivers/LCD-show/LCD-hdmi deleted file mode 100755 index 15de095..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD-hdmi +++ /dev/null @@ -1,6 +0,0 @@ -sudo cp -rf ./etc/modules-HDMI /etc/modules -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf -sudo cp ./boot/config-nomal.txt /boot/config.txt -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo reboot diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD101-1024x600-show b/dotfiles/lcd_display_drivers/LCD-show/LCD101-1024x600-show deleted file mode 100755 index 5de2fa9..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD101-1024x600-show +++ /dev/null @@ -1,49 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-101-1024x600.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-101-1024x600.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-101-1024x600.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-101-1024x600.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD101-1024x600-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD28-show b/dotfiles/lcd_display_drivers/LCD-show/LCD28-show deleted file mode 100755 index a1df4b8..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD28-show +++ /dev/null @@ -1,53 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare32b-overlay.dtb /boot/overlays/waveshare32b.dtbo -sudo cp ./waveshare32b-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD32-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD32-show b/dotfiles/lcd_display_drivers/LCD-show/LCD32-show deleted file mode 100755 index a1df4b8..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD32-show +++ /dev/null @@ -1,53 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-32.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare32b-overlay.dtb /boot/overlays/waveshare32b.dtbo -sudo cp ./waveshare32b-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD32-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-480x320-show b/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-480x320-show deleted file mode 100755 index 2e4003e..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-480x320-show +++ /dev/null @@ -1,44 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35H-480x320.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35H-480x320.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35H-480x320.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35H-480x320.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD5-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-800x480-show b/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-800x480-show deleted file mode 100755 index 6e48ad3..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-800x480-show +++ /dev/null @@ -1,44 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD5-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD35-show b/dotfiles/lcd_display_drivers/LCD-show/LCD35-show deleted file mode 100755 index 455a0a2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD35-show +++ /dev/null @@ -1,52 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare35a-overlay.dtb /boot/overlays/waveshare35a.dtbo -sudo cp ./waveshare35a-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD35-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD35B-show b/dotfiles/lcd_display_drivers/LCD-show/LCD35B-show deleted file mode 100755 index 8165502..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD35B-show +++ /dev/null @@ -1,52 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35b.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35b.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35b.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35b.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare35b-overlay.dtb /boot/overlays/waveshare35b.dtbo -sudo cp ./waveshare35b-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD35B-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD35CPLD-show b/dotfiles/lcd_display_drivers/LCD-show/LCD35CPLD-show deleted file mode 100755 index 2cb0432..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD35CPLD-show +++ /dev/null @@ -1,52 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35cpld //usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35cpld.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35cpld-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35cpld.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35cpld-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35cpld.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35cpld-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-35cpld.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare35cpld-overlay.dtb /boot/overlays/waveshare35cpld.dtbo -sudo cp ./waveshare35cpld-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD35-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD4-800x480-show b/dotfiles/lcd_display_drivers/LCD-show/LCD4-800x480-show deleted file mode 100755 index 69c2fb5..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD4-800x480-show +++ /dev/null @@ -1,48 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4-800x480.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4-800x480.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4-800x480.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4-800x480.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD4-800x480-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD4-show b/dotfiles/lcd_display_drivers/LCD-show/LCD4-show deleted file mode 100755 index 3ff5c87..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD4-show +++ /dev/null @@ -1,52 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - -if test "$1" = "0" -o "$#" = "0";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-4 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-4-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-4-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-4-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-4.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - -sudo cp ./waveshare35a-overlay.dtb /boot/overlays/waveshare35a.dtbo -sudo cp ./waveshare35a-overlay.dtb /boot/overlays/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf /usr/share/X11/xorg.conf.d/ -if [ -b /dev/mmcblk0p7 ]; then -sudo cp ./cmdline.txt-noobs /boot/cmdline.txt -else -sudo cp ./cmdline.txt /boot/ -fi - -sudo cp ./inittab /etc/ - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD4-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD43-show b/dotfiles/lcd_display_drivers/LCD-show/LCD43-show deleted file mode 100755 index 32f93ee..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD43-show +++ /dev/null @@ -1,48 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-43 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-43.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-43-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-43.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-43-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-43.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-43-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-43.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD43-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD5-show b/dotfiles/lcd_display_drivers/LCD-show/LCD5-show deleted file mode 100755 index f0ef6d7..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD5-show +++ /dev/null @@ -1,48 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-5.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD5-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD7-1024x600-show b/dotfiles/lcd_display_drivers/LCD-show/LCD7-1024x600-show deleted file mode 100755 index 9a4d6a0..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD7-1024x600-show +++ /dev/null @@ -1,49 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-1024x600.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-1024x600.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-1024x600.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-1024x600.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD7-1024x600-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/LCD7-800x480-show b/dotfiles/lcd_display_drivers/LCD-show/LCD7-800x480-show deleted file mode 100755 index dd72320..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/LCD7-800x480-show +++ /dev/null @@ -1,49 +0,0 @@ -i=1 -for lines in `cat ./boot/mark` -do - case ${i} in - 1) var1=${lines};; - esac - i=`expr ${i} + 1` -done -#echo "$var1" - -if test "$var1" = "0";then -#sudo mkdir /etc/X11/xorg.conf.d -sudo apt-get install xserver-xorg-input-evdev -sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf -echo "1" > ./boot/mark -fi - - -if test "$1" = "0" -o "$#" = "0"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-800x480.txt /boot/config.txt -echo "LCD configrue 0" -elif test "$1" = "90"; then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-90 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-800x480.txt-90 /boot/config.txt -echo "LCD configrue 90" -elif test "$1" = "180";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-180 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-800x480.txt-180 /boot/config.txt -echo "LCD configrue 180" -elif test "$1" = "270";then -sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-270 /usr/share/X11/xorg.conf.d/99-calibration.conf -sudo cp ./boot/config-7-800x480.txt-270 /boot/config.txt -echo "LCD configrue 270" -fi - - - -#sudo cp ./cmdline.txt /boot/ -#sudo cp ./inittab /etc/ -sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf - - -if test "$#" = "0" -o "$1" = "0" -o "$1" = "90" -o "$1" = "180" -o "$1" = "270"; then -sudo reboot -echo "reboot now" -else -echo "Invalid parameter,Usage:LCD7-800x480-show [0] [90] [180] [270]" -fi diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt deleted file mode 100755 index a00ee8b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt +++ /dev/null @@ -1,64 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output - -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=2 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 120 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-180 deleted file mode 100755 index ea422f3..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-180 +++ /dev/null @@ -1,64 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output - -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=0 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 120 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-270 deleted file mode 100755 index 0052509..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-270 +++ /dev/null @@ -1,64 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output - -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=3 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 120 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-90 deleted file mode 100755 index 888b2a9..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-90 +++ /dev/null @@ -1,64 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output - -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=1 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 120 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt deleted file mode 100755 index 161963e..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare32b:rotate=270 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-180 deleted file mode 100755 index 4f1b7e4..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-180 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare32b:rotate=90 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-270 deleted file mode 100755 index b5c896b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-270 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare32b:rotate=180 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-90 deleted file mode 100755 index f08133f..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-90 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare32b:rotate=0 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt deleted file mode 100755 index 740243d..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180 deleted file mode 100755 index 1e9baff..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180 +++ /dev/null @@ -1,65 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -## gives more memory to the gpu for playing 1080 videos (might need to adjust this when using older pis with less memory) -gpu_mem=448 -## enables the raspi camera -start_x=1 -##fixes bug with playback freezing -audio_pwm_mode=0 - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -#hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -sdtv_mode=0 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=270 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-270 deleted file mode 100755 index 6b4dcb4..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-270 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=0 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-90 deleted file mode 100755 index 7f429e3..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-90 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=180 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt deleted file mode 100755 index d3ec6d7..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 320 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-180 deleted file mode 100755 index 22bbecd..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 320 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=2 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-270 deleted file mode 100755 index bfffa57..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-270 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 320 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=3 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-90 deleted file mode 100755 index dff9403..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=1 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 320 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt deleted file mode 100755 index ff116cd..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35b -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-180 deleted file mode 100755 index 60aeacc..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-180 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35b:rotate=270 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-270 deleted file mode 100755 index 1ca1c3e..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-270 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35b:rotate=0 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-90 deleted file mode 100755 index f8b009b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-90 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35b:rotate=180 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt deleted file mode 100755 index c5c5dd0..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35cpld -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-180 deleted file mode 100755 index 6e35868..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-180 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35cpld:rotate=270 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-270 deleted file mode 100755 index 158b407..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-270 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35cpld:rotate=0 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-90 deleted file mode 100755 index 15cefaf..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-90 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35cpld:rotate=180 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt deleted file mode 100755 index 130c6e5..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 800 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=3 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-180 deleted file mode 100755 index bea7a38..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=1 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 800 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270 deleted file mode 100755 index e284e5b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270 +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 800 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270Y b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270Y deleted file mode 100644 index e284e5b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270Y +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 800 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-90 deleted file mode 100755 index 0437296..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 480 800 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=2 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt deleted file mode 100755 index 621b91b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-180 deleted file mode 100755 index f35b933..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-180 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=270 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-270 deleted file mode 100755 index 90bc992..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-270 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=0 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-90 deleted file mode 100755 index 9f286e2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-90 +++ /dev/null @@ -1,58 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -dtoverlay=waveshare35a:rotate=180 -#dtoverlay=ads7846,cs=1,penirq=17,penirq_pull=2,speed=1000000,keep_vref_on=1,swapxy=0,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt deleted file mode 100755 index 9f94bc6..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=2 -max_usb_current=1 -hdmi_group=2 -hdmi_mode=87 -hdmi_timings=480 0 1 41 2 272 0 2 10 2 0 0 0 60 0 9009000 3 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-180 deleted file mode 100755 index 1726b94..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=0 -max_usb_current=1 -hdmi_group=2 -hdmi_mode=87 -hdmi_timings=480 0 1 41 2 272 0 2 10 2 0 0 0 60 0 9009000 3 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-270 deleted file mode 100755 index 7fd1b10..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-270 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=3 -max_usb_current=1 -hdmi_group=2 -hdmi_mode=87 -hdmi_timings=480 0 1 41 2 272 0 2 10 2 0 0 0 60 0 9009000 3 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-90 deleted file mode 100755 index 988895b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=1 -max_usb_current=1 -hdmi_group=2 -hdmi_mode=87 -hdmi_timings=480 0 1 41 2 272 0 2 10 2 0 0 0 60 0 9009000 3 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt deleted file mode 100755 index 3e3e1d2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-180 deleted file mode 100755 index d4865aa..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=2 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-270 deleted file mode 100755 index 2afa783..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-270 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=3 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-90 deleted file mode 100755 index 512886f..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -display_rotate=1 -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt deleted file mode 100755 index d685ac7..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-180 deleted file mode 100755 index e8ecef3..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=2 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-270 deleted file mode 100755 index 203a67b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-270 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=3 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-90 deleted file mode 100755 index 9444035..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 1024 600 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=1 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt deleted file mode 100755 index 3e3e1d2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt +++ /dev/null @@ -1,62 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-180 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-180 deleted file mode 100755 index d4865aa..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-180 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=2 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-270 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-270 deleted file mode 100755 index 2afa783..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-270 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=3 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-90 b/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-90 deleted file mode 100755 index e54db3a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-90 +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -#sdtv_mode=2 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on -hdmi_group=2 -hdmi_mode=1 -hdmi_mode=87 -hdmi_cvt 800 480 60 6 0 0 0 -dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900 -display_rotate=1 -hdmi_drive=1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt b/dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt deleted file mode 100755 index 9a9d4a4..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt +++ /dev/null @@ -1,63 +0,0 @@ -# For more options and information see -# http://www.raspberrypi.org/documentation/configuration/config-txt.md -# Some settings may impact device functionality. See link above for details - -## gives more memory to the gpu for playing 1080 videos (might need to adjust this when using older pis with less memory) -gpu_mem=448 -## enables the raspi camera -start_x=1 -##fixes bug with playback freezing -audio_pwm_mode=0 - -# uncomment if you get no picture on HDMI for a default "safe" mode -#hdmi_safe=1 - -# uncomment this if your display has a black border of unused pixels visible -# and your display can output without overscan -#disable_overscan=1 - -# uncomment the following to adjust overscan. Use positive numbers if console -# goes off screen, and negative if there is too much border -#overscan_left=16 -#overscan_right=16 -#overscan_top=16 -#overscan_bottom=16 - -# uncomment to force a console size. By default it will be display's size minus -# overscan. -#framebuffer_width=1280 -#framebuffer_height=720 - -# uncomment if hdmi display is not detected and composite is being output -#hdmi_force_hotplug=1 - -# uncomment to force a specific HDMI mode (this will force VGA) -#hdmi_group=1 -#hdmi_mode=1 - -# uncomment to force a HDMI mode rather than DVI. This can make audio work in -# DMT (computer monitor) modes -#hdmi_drive=2 - -# uncomment to increase signal to HDMI, if you have interference, blanking, or -# no display -#config_hdmi_boost=4 - -# uncomment for composite PAL -sdtv_mode=0 - -#uncomment to overclock the arm. 700 MHz is the default. -#arm_freq=800 - -# Uncomment some or all of these to enable the optional hardware interfaces -dtparam=i2c_arm=on -#dtparam=i2s=on -dtparam=spi=on -enable_uart=1 -# Uncomment this to enable the lirc-rpi module -#dtoverlay=lirc-rpi - -# Additional overlays and parameters are documented /boot/overlays/README - -# Enable audio (loads snd_bcm2835) -dtparam=audio=on diff --git a/dotfiles/lcd_display_drivers/LCD-show/boot/mark b/dotfiles/lcd_display_drivers/LCD-show/boot/mark deleted file mode 100644 index d00491f..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/boot/mark +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt b/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt deleted file mode 100755 index e58e8dc..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt +++ /dev/null @@ -1 +0,0 @@ -dwc_otg.lpm_enable=0 console=tty1 console=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait fbcon=map:10 fbcon=font:ProFont6x11 quiet splash logo.nologo plymouth.ignore-serial-consoles diff --git a/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt-noobs b/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt-noobs deleted file mode 100755 index 736488e..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/cmdline.txt-noobs +++ /dev/null @@ -1 +0,0 @@ -dwc_otg.lpm_enable=0 console=tty1 console=ttyAMA0,115200 root=/dev/mmcblk0p7 rootfstype=ext4 elevator=deadline rootwait fbcon=map:10 fbcon=font:ProFont6x11 logo.nologo diff --git a/dotfiles/lcd_display_drivers/LCD-show/dtc.sh b/dotfiles/lcd_display_drivers/LCD-show/dtc.sh deleted file mode 100755 index 7b30674..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/dtc.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh -e - -check_dpkg () { - LC_ALL=C dpkg --list | awk '{print $2}' | grep "^${pkg}" >/dev/null || deb_pkgs="${deb_pkgs}${pkg} " -} - -unset deb_pkgs -pkg="bison" -check_dpkg -pkg="build-essential" -check_dpkg -pkg="flex" -check_dpkg -pkg="git-core" -check_dpkg - -if [ "${deb_pkgs}" ] ; then - echo "Installing: ${deb_pkgs}" - sudo apt-get update - sudo apt-get -y install ${deb_pkgs} - sudo apt-get clean -fi - -#git_sha="origin/master" -#git_sha="27cdc1b16f86f970c3c049795d4e71ad531cca3d" -#git_sha="fdc7387845420168ee5dd479fbe4391ff93bddab" -git_sha="65cc4d2748a2c2e6f27f1cf39e07a5dbabd80ebf" -project="dtc" -server="git://git.kernel.org/pub/scm/linux/kernel/git/jdl" - -if [ ! -f ${HOME}/git/${project}/.git/config ] ; then - git clone ${server}/${project}.git ${HOME}/git/${project}/ -fi - -if [ ! -f ${HOME}/git/${project}/.git/config ] ; then - rm -rf ${HOME}/git/${project}/ || true - echo "error: git failure, try re-runing" - exit -fi - -unset old_address -old_address=$(cat ${HOME}/git/${project}/.git/config | grep "jdl.com" || true) -if [ ! "x${old_address}" = "x" ] ; then - sed -i -e 's:git.jdl.com/software:git.kernel.org/pub/scm/linux/kernel/git/jdl:g' ${HOME}/git/${project}/.git/config -fi - -cd ${HOME}/git/${project}/ -make clean -git checkout master -f -git pull || true - -test_for_branch=$(git branch --list ${git_sha}-build) -if [ "x${test_for_branch}" != "x" ] ; then - git branch ${git_sha}-build -D -fi - -git checkout ${git_sha} -b ${git_sha}-build -git pull git://github.com/RobertCNelson/dtc.git dtc-fixup-65cc4d2 - -make clean -make PREFIX=/usr/local/ CC=gcc CROSS_COMPILE= all -echo "Installing into: /usr/local/bin/" -sudo make PREFIX=/usr/local/ install \ No newline at end of file diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 deleted file mode 100755 index 02e11de..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "4034 31 11 3879" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-180 deleted file mode 100755 index 941dcd2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "31 4034 3879 11" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-270 deleted file mode 100755 index e69aa81..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "31 4034 11 3879" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-90 deleted file mode 100755 index a109de4..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "4034 31 3879 11" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32 deleted file mode 100755 index 8b8969f..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "219 3835 3984 219" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-180 deleted file mode 100755 index 37c9f15..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3835 219 219 3984" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-270 deleted file mode 100755 index d895e97..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3835 219 3984 219" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-90 deleted file mode 100755 index 06e8433..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-32-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "219 3835 219 3984" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35 deleted file mode 100755 index c63640c..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 294 3801" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-180 deleted file mode 100755 index 595b96a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "300 3932 3801 294" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-270 deleted file mode 100755 index b5a2615..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "300 3932 294 3801" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-90 deleted file mode 100755 index e032954..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 3801 294" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35H b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35H deleted file mode 100755 index 6738b9d..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35H +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "190 3991 243 3895" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b deleted file mode 100755 index c63640c..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 294 3801" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-180 deleted file mode 100755 index 595b96a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "300 3932 3801 294" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-270 deleted file mode 100755 index b5a2615..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "300 3932 294 3801" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-90 deleted file mode 100755 index e032954..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35b-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 3801 294" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld deleted file mode 100755 index 3b3f277..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "82 3941 127 3875" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-180 deleted file mode 100755 index e032954..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 3801 294" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-270 deleted file mode 100755 index 595b96a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "300 3932 3801 294" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-90 deleted file mode 100755 index c63640c..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-35cpld-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3932 300 294 3801" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4 deleted file mode 100755 index 09b6476..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3950 172 3871 194" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-180 deleted file mode 100755 index d4eb32f..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "172 3950 194 3871" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-270 deleted file mode 100755 index 5591b6c..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3950 172 194 3871" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-90 deleted file mode 100755 index e051c5a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-4-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "172 3950 3871 194" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43 deleted file mode 100755 index 21925e6..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3905 208 3910 288" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-180 deleted file mode 100755 index 961235b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "208 3905 288 3910" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-270 deleted file mode 100755 index 0b42747..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3905 208 288 3910" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-90 deleted file mode 100755 index de5dbbd..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-43-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "208 3905 3910 288" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5 deleted file mode 100755 index 961235b..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "208 3905 288 3910" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-180 deleted file mode 100755 index 21925e6..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3905 208 3910 288" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-270 deleted file mode 100755 index 0b42747..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3905 208 288 3910" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-90 deleted file mode 100755 index de5dbbd..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-5-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "208 3905 3910 288" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600 deleted file mode 100755 index 2d1f012..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "73 4007 3976 84" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-180 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-180 deleted file mode 100755 index 73e93ea..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-180 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3863 36 157 3887" - Option "SwapAxes" "1" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-270 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-270 deleted file mode 100755 index 1f5a2d6..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-270 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "36 3863 157 3887" - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-90 b/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-90 deleted file mode 100755 index fbb3b4c..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/etc/X11/xorg.conf.d/99-calibration.conf-7-1024x600-90 +++ /dev/null @@ -1,6 +0,0 @@ -Section "InputClass" - Identifier "calibration" - MatchProduct "ADS7846 Touchscreen" - Option "Calibration" "3863 36 3887 157 " - Option "SwapAxes" "0" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/inittab b/dotfiles/lcd_display_drivers/LCD-show/inittab deleted file mode 100755 index 174e8fb..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/inittab +++ /dev/null @@ -1,72 +0,0 @@ -# /etc/inittab: init(8) configuration. -# $Id: inittab,v 1.91 2002/01/25 13:35:21 miquels Exp $ - -# The default runlevel. -id:2:initdefault: - -# Boot-time system configuration/initialization script. -# This is run first except when booting in emergency (-b) mode. -si::sysinit:/etc/init.d/rcS - -# What to do in single-user mode. -~~:S:wait:/sbin/sulogin - -# /etc/init.d executes the S and K scripts upon change -# of runlevel. -# -# Runlevel 0 is halt. -# Runlevel 1 is single-user. -# Runlevels 2-5 are multi-user. -# Runlevel 6 is reboot. - -l0:0:wait:/etc/init.d/rc 0 -l1:1:wait:/etc/init.d/rc 1 -l2:2:wait:/etc/init.d/rc 2 -l3:3:wait:/etc/init.d/rc 3 -l4:4:wait:/etc/init.d/rc 4 -l5:5:wait:/etc/init.d/rc 5 -l6:6:wait:/etc/init.d/rc 6 -# Normally not reached, but fallthrough in case of emergency. -z6:6:respawn:/sbin/sulogin - -# What to do when CTRL-ALT-DEL is pressed. -ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now - -# Action on special keypress (ALT-UpArrow). -#kb::kbrequest:/bin/echo "Keyboard Request--edit /etc/inittab to let this work." - -# What to do when the power fails/returns. -pf::powerwait:/etc/init.d/powerfail start -pn::powerfailnow:/etc/init.d/powerfail now -po::powerokwait:/etc/init.d/powerfail stop - -# /sbin/getty invocations for the runlevels. -# -# The "id" field MUST be the same as the last -# characters of the device (after "tty"). -# -# Format: -# ::: -# -# Note that on most Debian systems tty7 is used by the X Window System, -# so if you want to add more getty's go ahead but skip tty7 if you run X. -# -1:2345:respawn:/sbin/getty --noclear 38400 tty1 -2:23:respawn:/sbin/getty 38400 tty2 -3:23:respawn:/sbin/getty 38400 tty3 -4:23:respawn:/sbin/getty 38400 tty4 -5:23:respawn:/sbin/getty 38400 tty5 -6:23:respawn:/sbin/getty 38400 tty6 - -# Example how to put a getty on a serial line (for a terminal) -# -#T0:23:respawn:/sbin/getty -L ttyS0 9600 vt100 -#T1:23:respawn:/sbin/getty -L ttyS1 9600 vt100 - -# Example how to put a getty on a modem line. -# -#T3:23:respawn:/sbin/mgetty -x0 -s 57600 ttyS3 - - -#Spawn a getty on Raspberry Pi serial line -T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100 diff --git a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/45-evdev.conf b/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/45-evdev.conf deleted file mode 100644 index cc83ab2..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/45-evdev.conf +++ /dev/null @@ -1,40 +0,0 @@ -# -# Catch-all evdev loader for udev-based systems -# We don't simply match on any device since that also adds accelerometers -# and other devices that we don't really want to use. The list below -# matches everything but joysticks. - -Section "InputClass" - Identifier "evdev pointer catchall" - MatchIsPointer "on" - MatchDevicePath "/dev/input/event*" - Driver "evdev" -EndSection - -Section "InputClass" - Identifier "evdev keyboard catchall" - MatchIsKeyboard "on" - MatchDevicePath "/dev/input/event*" - Driver "evdev" -EndSection - -Section "InputClass" - Identifier "evdev touchpad catchall" - MatchIsTouchpad "on" - MatchDevicePath "/dev/input/event*" - Driver "evdev" -EndSection - -Section "InputClass" - Identifier "evdev tablet catchall" - MatchIsTablet "on" - MatchDevicePath "/dev/input/event*" - Driver "evdev" -EndSection - -Section "InputClass" - Identifier "evdev touchscreen catchall" - MatchIsTouchscreen "on" - MatchDevicePath "/dev/input/event*" - Driver "evdev" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf b/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf deleted file mode 100755 index 05f746a..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf +++ /dev/null @@ -1,17 +0,0 @@ -# This is a minimal sample config file, which can be copied to -# /etc/X11/xorg.conf in order to make the Xorg server pick up -# and load xf86-video-fbturbo driver installed in the system. -# -# When troubleshooting, check /var/log/Xorg.0.log for the debugging -# output and error messages. -#The driver is made by Waveshare&Spotpear -# Run "man fbturbo" to get additional information about the extra -# configuration options for tuning the driver. - -Section "Device" - Identifier "Allwinner A10/A13 FBDEV" - Driver "fbturbo" - Option "fbdev" "/dev/fb1" - - Option "SwapbuffersWait" "true" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI b/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI deleted file mode 100755 index 617fae0..0000000 --- a/dotfiles/lcd_display_drivers/LCD-show/usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI +++ /dev/null @@ -1,17 +0,0 @@ -# This is a minimal sample config file, which can be copied to -# /etc/X11/xorg.conf in order to make the Xorg server pick up -# and load xf86-video-fbturbo driver installed in the system. -# -# When troubleshooting, check /var/log/Xorg.0.log for the debugging -# output and error messages. -#The driver is made by Waveshare&Spotpear -# Run "man fbturbo" to get additional information about the extra -# configuration options for tuning the driver. - -Section "Device" - Identifier "Allwinner A10/A13 FBDEV" - Driver "fbturbo" - Option "fbdev" "/dev/fb0" - - Option "SwapbuffersWait" "true" -EndSection diff --git a/dotfiles/lcd_display_drivers/LCD-show/waveshare32b-overlay.dtb b/dotfiles/lcd_display_drivers/LCD-show/waveshare32b-overlay.dtb deleted file mode 100755 index 2d33aa5..0000000 Binary files a/dotfiles/lcd_display_drivers/LCD-show/waveshare32b-overlay.dtb and /dev/null differ diff --git a/dotfiles/lcd_display_drivers/LCD-show/waveshare35a-overlay.dtb b/dotfiles/lcd_display_drivers/LCD-show/waveshare35a-overlay.dtb deleted file mode 100755 index 6da27e1..0000000 Binary files a/dotfiles/lcd_display_drivers/LCD-show/waveshare35a-overlay.dtb and /dev/null differ diff --git a/dotfiles/lcd_display_drivers/LCD-show/waveshare35b-overlay.dtb b/dotfiles/lcd_display_drivers/LCD-show/waveshare35b-overlay.dtb deleted file mode 100755 index 69d4f9a..0000000 Binary files a/dotfiles/lcd_display_drivers/LCD-show/waveshare35b-overlay.dtb and /dev/null differ diff --git a/dotfiles/lcd_display_drivers/LCD-show/waveshare35cpld-overlay.dtb b/dotfiles/lcd_display_drivers/LCD-show/waveshare35cpld-overlay.dtb deleted file mode 100755 index f97541b..0000000 Binary files a/dotfiles/lcd_display_drivers/LCD-show/waveshare35cpld-overlay.dtb and /dev/null differ diff --git a/dotfiles/lcd_display_drivers/LCD-show/xinput-calibrator_0.7.5-1_armhf.deb b/dotfiles/lcd_display_drivers/LCD-show/xinput-calibrator_0.7.5-1_armhf.deb deleted file mode 100755 index bc5f57b..0000000 Binary files a/dotfiles/lcd_display_drivers/LCD-show/xinput-calibrator_0.7.5-1_armhf.deb and /dev/null differ diff --git a/dotfiles/lcd_display_drivers/README.md b/dotfiles/lcd_display_drivers/README.md deleted file mode 100644 index 2df918b..0000000 --- a/dotfiles/lcd_display_drivers/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# lcd display drivers - -these are the drivers for the waveshare displays that work on the cheep lcd i ordered online ( [LCD-show-170703] ). - -my screen only needs the LCD35-show and LCD-hdmi scripts. a few modifications to these (espically to the boot/config.txt) have been made to allow it to work with composite video and to switch between pal and ntsc. - -also some modifications might be needed to hide the boot text. i will document these changes in this file - -## changes to config-35.txt-180 - -## changes to config-normal.txt - -## changes to config-nomal.txt - -- commenting out hdmi_force to allow composite output: `#hdmi_force_hotplug=1` - -## changes to the cmdline.txt - -`quiet splash logo.nologo plymouth.ignore-serial-consoles` for quiet boot with splash screen - -[LCD-show-170703]: www.waveshare.com/w/uplosd/0/00/LCD-show-170703.tar.gz diff --git a/dotfiles/set_composite_mode.sh b/dotfiles/set_composite_mode.sh index 04361e9..9a4323a 100755 --- a/dotfiles/set_composite_mode.sh +++ b/dotfiles/set_composite_mode.sh @@ -1,3 +1,3 @@ #!/bin/bash - -sudo sed -i "s/sdtv_mode=./sdtv_mode=$1/g" ~/r_e_c_u_r/dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt ~/r_e_c_u_r/dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180 /boot/config.txt +sudo sed -i "s/sdtv_mode=./sdtv_mode=$1/g" /boot/config.txt +sudo sed -i "s/sdtv_aspect=./sdtv_aspect=$2/g" /boot/config.txt diff --git a/r_e_c_u_r.py b/r_e_c_u_r.py index 89125a7..1a5b721 100644 --- a/r_e_c_u_r.py +++ b/r_e_c_u_r.py @@ -37,6 +37,8 @@ actions = Actions(tk, message_handler, data, video_driver, capture, display) numpad_input = NumpadInput(tk, message_handler, display, actions, data) midi_input = MidiInput(tk, message_handler, display, actions, data) +actions.check_and_set_output_mode_on_boot() + frame.pack() tk.attributes("-fullscreen", True)