mirror of
https://github.com/cyberboy666/r_e_c_u_r.git
synced 2025-12-12 19:30:11 +01:00
Merge branch 'master' into beta
This commit is contained in:
24
README.md
24
README.md
@@ -3,22 +3,26 @@
|
||||
|
||||
![vectorfront][vectorfront]
|
||||
|
||||
__r_e_c_u_r__ is an embedded python application on _raspberry pi3_ that uses `input` from the _keypad_ to control omxplayer's `video out` while `displaying` a simple text user interface on the _rpi lcd screen_
|
||||
__r_e_c_u_r__ is a fully customizable hardware video sampler. the open source python application is built around a _raspberry pi3_ that uses `input` from a _keypad_ to control omxplayer's `video out` while `displaying` a simple text user interface on a _rpi lcd screen_
|
||||
|
||||
## features
|
||||
|
||||
- seamlessly loop video through rpi's HDMI out
|
||||
- seamlessly loop video through rpi's HDMI or composite out
|
||||
- intuitively _browse_ video files on a usb and map them into __r_e_c_u_r__
|
||||
- load and trigger video samples from numbered slots in the _sampler_ bank
|
||||
- monitor the current samples playback status and the sampler banks details on the lcd display
|
||||
- dynamically set and clear the start/end points of each sample as it plays
|
||||
- configure the _settings_ menu to suit your use
|
||||
|
||||
(more coming soon)
|
||||
### more coming soon:
|
||||
|
||||
### feature requests
|
||||
- ~~composite video out (hopefully)~~
|
||||
- midi controlled
|
||||
- more playback modes and options
|
||||
- optional extention for live sampling
|
||||
|
||||
i started a [board] of features i would like to explore
|
||||
### other feature ideas
|
||||
|
||||
i started a [board] of some features i would like to explore
|
||||
|
||||
## main objectives:
|
||||
|
||||
@@ -32,6 +36,14 @@ i started a [board] of features i would like to explore
|
||||
- [building] - how to build r_e_c_u_r
|
||||
- [developing] - how to contribute to r_e_c_u_r
|
||||
|
||||
## status
|
||||
|
||||
The nature of this project is to be open-ended and community driven. my r_e_c_u_r already solves the problems i intially built it for. what happens next depends on how it is used and recieved by you. if you like the idea please consider getting involved. Currently:
|
||||
|
||||
- the _software_ is at a MVP status; the basic functionally is there and should work as expected. no doubt there are both known and unknown bugs around the edges (let me know whats impacting you!). this is also only the beginning of whats possible using python on a raspberry pi. i will continue to maintain and improve it, but in what direction and velocity depends on the users
|
||||
|
||||
- the only _hardware_ option currently avaliable is the `diy enclosure`; this is designed be low cost, hackable and accessable. you can modify and 3d print/laser cut your own case, the recommended keypad and lcd parts are the cheapest i could find (with some compromises), basicly aiming to get these in the hands of as many other diy-er as interested. i also have plans to offer a limited `boutique enclosure` option at some point in the future - professional custom cut aluminuim cover , hand wired mechanical keys , real vinyl printed stickers, no compromises! this will probably coincide with a larger software release in near future if theres any interest (another future idea : a eurorack version based of raspi3 compute)
|
||||
|
||||
## contact
|
||||
|
||||
langolierz@gmail.com
|
||||
|
||||
@@ -22,6 +22,7 @@ KEYPAD_MAPPING = 'keypad_action_mapping.json'
|
||||
EMPTY_SLOT = dict(name='', location='', length=-1, start=-1, end=-1, rate=1)
|
||||
EMPTY_BANK = [EMPTY_SLOT for i in range(10)]
|
||||
PATH_TO_DATA_OBJECTS = '{}/json_objects/'.format(get_the_current_dir_path())
|
||||
PATH_TO_BROWSER = '/media/pi'
|
||||
|
||||
def read_json(file_name):
|
||||
with open(PATH_TO_DATA_OBJECTS + file_name) as data_file:
|
||||
@@ -33,14 +34,6 @@ def update_json(file_name, data):
|
||||
with open('{}{}'.format(PATH_TO_DATA_OBJECTS, file_name), 'w') as data_file:
|
||||
json.dump(data, data_file)
|
||||
|
||||
|
||||
|
||||
def get_path_to_browser():
|
||||
return read_json('path_to_browser.json')
|
||||
|
||||
PATH_TO_BROWSER = get_path_to_browser()
|
||||
|
||||
|
||||
class Data(object):
|
||||
def __init__(self, message_handler):
|
||||
self.browser_data = BrowserData(PATH_TO_BROWSER)
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
"0-3"
|
||||
"0-0"
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
[{"options": ["dev_mode", "XGA", "composite"], "name": "SCREEN_SIZE"}, {"options": ["run_action"], "name": "quit_the_program"}, {"options": ["run_action"], "name": "switch_display_to_hdmi"}, {"options": ["run_action"], "name": "switch_display_to_lcd"}]
|
||||
[{"name": "SCREEN_SIZE", "options": ["dev_mode", "composite", "XGA"]}, {"name": "quit_the_program", "options": ["run_action"]}, {"name": "switch_display_to_hdmi", "options": ["run_action"]}, {"name": "switch_display_to_lcd", "options": ["run_action"]}]
|
||||
@@ -29,7 +29,7 @@ class Display(object):
|
||||
|
||||
@staticmethod
|
||||
def _create_display_text(tk):
|
||||
return Text(tk, bg="black", fg="white", font=('courier', 13))
|
||||
return Text(tk, bg="black", fg="white", font=('Liberation Mono', 13))
|
||||
|
||||
def _add_tags(self):
|
||||
self.display_text.tag_configure("SELECT", background="white", foreground="black")
|
||||
|
||||
@@ -52,7 +52,7 @@ other bits and pieces:
|
||||
|
||||
[raspberry pi3]:https://www.aliexpress.com/item/RS-Version-2016-New-Raspberry-Pi-3-Model-B-Board-1GB-LPDDR2-BCM2837-Quad-Core-Ras/32789942633.html?spm=a2g0s.9042311.0.0.FkRWty
|
||||
[main parts]: build_all.jpg
|
||||
[raspberry pi screen]:https://www.aliexpress.com/item/New-3-5-inch-Raspberry-Pi-LCD-TFT-Touchscreen-Display-Touch-Shield-Raspberry-pi-2-Model/32605410449.html?spm=a2g0s.9042311.0.0.ZW1WDU
|
||||
[raspberry pi screen]:https://www.aliexpress.com/item/3-5-Inch-TFT-LCD-Moudle-For-Raspberry-Pi-2-Model-B-RPI-B-raspberry-pi/32707058182.html?spm=a2g0s.13010208.99999999.262.bV4EPV
|
||||
[usb keypad]:https://www.aliexpress.com/item/2-4G-Wireless-Keyboard-USB-Numeric-Keypad-19-Keys-Mini-Digital-Keyboard-Ultra-Slim-Number-Pad/32818206308.html?spm=a2g0s.9042311.0.0.FkRWty
|
||||
[key stickers]: https://docs.google.com/document/d/1vhXv5QTfyUqsZuMdQu1lh2dMfEk5HMNVyp8uhrc-I2w/edit?usp=sharing
|
||||
[etcher]: https://etcher.io
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 102 KiB |
@@ -11,19 +11,31 @@
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 744.09448819 1052.3622047"
|
||||
width="240.43629mm"
|
||||
height="350mm"
|
||||
viewBox="0 0 851.93963 1240.1574"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="vectorfront.svg">
|
||||
sodipodi:docname="vectorfront.svg"
|
||||
inkscape:export-filename="D:\Leo\gitrepos\r_e_c_u_r\documentation\vectorfront.png"
|
||||
inkscape:export-xdpi="160"
|
||||
inkscape:export-ydpi="160">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient4527"
|
||||
osb:paint="solid"
|
||||
gradientTransform="matrix(0.09007919,0,0,-0.05051851,1664.5199,2755.3973)">
|
||||
<stop
|
||||
style="stop-color:#dccc74;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4529" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4761"
|
||||
osb:paint="solid"
|
||||
gradientTransform="matrix(0.71188978,0,0,0.71188978,23.218523,81.995223)">
|
||||
gradientTransform="matrix(0.71188978,0,0,0.71188978,-141.05604,-226.04825)">
|
||||
<stop
|
||||
style="stop-color:#d7dedc;stop-opacity:1;"
|
||||
offset="0"
|
||||
@@ -32,7 +44,7 @@
|
||||
<linearGradient
|
||||
id="linearGradient4196"
|
||||
osb:paint="solid"
|
||||
gradientTransform="matrix(0.0412209,0,0,0.0412209,12036.795,17431.024)">
|
||||
gradientTransform="matrix(0.01108729,0,0,0.00942587,3379.2285,4332.5806)">
|
||||
<stop
|
||||
style="stop-color:#3d4546;stop-opacity:1;"
|
||||
offset="0"
|
||||
@@ -65,7 +77,7 @@
|
||||
<linearGradient
|
||||
id="linearGradient4140"
|
||||
osb:paint="solid"
|
||||
gradientTransform="matrix(0.0412209,0,0,0.0412209,12036.795,17431.024)">
|
||||
gradientTransform="matrix(0.00848718,0,0,0.0047598,2622.7356,2412.0741)">
|
||||
<stop
|
||||
style="stop-color:#040414;stop-opacity:1;"
|
||||
offset="0"
|
||||
@@ -947,7 +959,7 @@
|
||||
x2="163.01273"
|
||||
y2="460.53867" />
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Noise Fill"
|
||||
id="filter9442">
|
||||
<feTurbulence
|
||||
@@ -988,6 +1000,12 @@
|
||||
result="composite2"
|
||||
id="feComposite9458" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4527"
|
||||
id="linearGradient5416"
|
||||
gradientTransform="matrix(1.142379,0,0,1.142379,-4.37527,-967.17272)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
@@ -996,94 +1014,92 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.64"
|
||||
inkscape:cx="251.88274"
|
||||
inkscape:cy="318.19764"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="346.06187"
|
||||
inkscape:cy="404.35092"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
inkscape:current-layer="layer5"
|
||||
showgrid="false"
|
||||
showborder="true"
|
||||
showguides="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1877"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="1963"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1">
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<sodipodi:guide
|
||||
position="694.48819,980.00583"
|
||||
position="849.28216,805.49786"
|
||||
orientation="1,0"
|
||||
id="guide6250"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="177.16536,1214.235"
|
||||
position="331.95933,1039.727"
|
||||
orientation="1,0"
|
||||
id="guide6290"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="462.93398,829.13388"
|
||||
position="617.72795,654.62592"
|
||||
orientation="0,1"
|
||||
id="guide6292"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="283.94757,177.16536"
|
||||
position="438.74154,2.6574548"
|
||||
orientation="0,1"
|
||||
id="guide6294"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="279.92126,936.91651"
|
||||
position="434.71523,762.40854"
|
||||
orientation="1,0"
|
||||
id="guide6298"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="591.73229,914.81942"
|
||||
position="746.52626,740.31145"
|
||||
orientation="1,0"
|
||||
id="guide6300"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="435.82678,925.86796"
|
||||
position="590.62075,751.35999"
|
||||
orientation="1,0"
|
||||
id="guide6302"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="262.20473,89.062502"
|
||||
position="416.9987,-85.445396"
|
||||
orientation="1,0"
|
||||
id="guide6304"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="609.44882,123.4375"
|
||||
position="764.24279,-51.070401"
|
||||
orientation="1,0"
|
||||
id="guide6306"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-70.866142,230.31497"
|
||||
position="83.927835,55.80706"
|
||||
orientation="0,1"
|
||||
id="guide6308"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-112.5,506.69292"
|
||||
orientation="0,1"
|
||||
id="guide6310"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-139.0625,570.47245"
|
||||
position="15.731478,395.96451"
|
||||
orientation="0,1"
|
||||
id="guide6312"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-400,775.98427"
|
||||
position="-245.20602,601.47632"
|
||||
orientation="0,1"
|
||||
id="guide6314"
|
||||
inkscape:label=""
|
||||
@@ -1104,9 +1120,10 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="backplane">
|
||||
inkscape:label="backplane"
|
||||
transform="translate(154.79398,362.30316)">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient4140);fill-opacity:1;stroke:url(#linearGradient4196);stroke-width:5.31496063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
style="opacity:1;fill:url(#linearGradient4140);fill-opacity:1;stroke:url(#linearGradient4196);stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect6296"
|
||||
width="517.32281"
|
||||
height="651.96851"
|
||||
@@ -1120,7 +1137,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="screen"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
transform="translate(154.79398,362.30316)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g6385"
|
||||
@@ -1158,7 +1176,8 @@
|
||||
inkscape:label="keys"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
transform="translate(154.79398,362.30316)">
|
||||
<g
|
||||
id="g6712"
|
||||
inkscape:export-xdpi="120"
|
||||
@@ -1990,11 +2009,356 @@
|
||||
id="flowPara6750-52">cmd</flowPara></flowRoot> </g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="plugs"
|
||||
transform="translate(154.79398,362.30316)">
|
||||
<g
|
||||
id="g4920">
|
||||
<g
|
||||
id="g5527"
|
||||
transform="translate(0,9.6040087)">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient4527);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4856"
|
||||
width="64.012497"
|
||||
height="45.575218"
|
||||
x="317.80173"
|
||||
y="104.19001"
|
||||
ry="0.55242699" />
|
||||
<g
|
||||
transform="translate(306.06264,-312.12136)"
|
||||
id="g4801">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4513"
|
||||
d="m 24.578866,451.65999 c -4.217228,0 -4.557564,2.07284 -5.87688,3.39216 -1.319317,1.31932 -1.64638,1.54956 -3.578595,2.0673 -1.932215,0.51773 -3.055582,1.30561 -3.055582,3.05558 l 0,10.66484 c 0,1.33132 1.562346,2.51772 4.362289,2.51772 l 26.285924,0 1.946862,0 26.285924,0 c 2.799943,0 4.36229,-1.1864 4.36229,-2.51772 l 0,-10.66484 c 0,-1.74997 -1.123368,-2.53785 -3.055583,-3.05558 -1.932214,-0.51774 -2.259278,-0.74798 -3.578594,-2.0673 -1.319317,-1.31932 -1.659653,-3.39216 -5.876881,-3.39216 l -17.904522,0 -2.413778,0 -17.902874,0 z"
|
||||
style="fill:url(#linearGradient4140);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4527);stroke-width:0.84473974px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssssssccssssssccs"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.52705359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 27.008039,457.92311 c -3.513549,0 -3.797097,1.8592 -4.896275,2.38327 -1.099177,0.52408 -1.371667,0.61554 -2.981476,0.8212 -1.609808,0.20566 -1.786145,0.51862 -1.786145,1.21376 l 0,4.23639 c 0,0.52884 1.301656,1.00011 3.634405,1.00011 l 21.899899,0 1.622012,0 21.899899,0 c 2.332749,0 3.634405,-0.47127 3.634405,-1.00011 l 0,-4.23639 c 0,-0.69514 0.09988,-1.0081 -1.509932,-1.21376 -1.609809,-0.20566 -1.882299,-0.29712 -2.981476,-0.8212 -1.099178,-0.52407 -1.382726,-2.38327 -4.896274,-2.38327 l -15.952805,0 -2.011019,0 z"
|
||||
id="path4533" />
|
||||
<g
|
||||
transform="translate(0,-0.08631675)"
|
||||
id="g4778">
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 42.226439,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 45.981218,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 49.735994,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 53.490778,458.01962 2.693084,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381069,0 -1.312016,-1.38107 -1.312016,-1.38107 z"
|
||||
id="path4535-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 57.245551,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-89"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 38.471657,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 34.716881,458.01962 2.693084,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381069,0 -1.312016,-1.38107 -1.312016,-1.38107 z"
|
||||
id="path4535-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 30.962102,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 27.207323,458.01962 2.693083,0 c 0,0 0,1.38107 -1.381068,1.38107 -1.381068,0 -1.312015,-1.38107 -1.312015,-1.38107 z"
|
||||
id="path4535-28"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,0.17263349)"
|
||||
id="g4789">
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 40.361994,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-892"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 44.090875,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-4-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 47.81976,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-9-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 51.548646,467.41087 2.693084,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381069,0 -1.312016,1.38107 -1.312016,1.38107 z"
|
||||
id="path4535-8-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 55.277529,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-89-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 36.633114,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-2-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 32.904227,467.41087 2.693085,0 c 0,0 0,-1.38107 -1.381069,-1.38107 -1.381069,0 -1.312016,1.38107 -1.312016,1.38107 z"
|
||||
id="path4535-1-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 29.175346,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-7-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 25.446461,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-28-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 59.006412,467.41087 2.693083,0 c 0,0 0,-1.38107 -1.381068,-1.38107 -1.381068,0 -1.312015,1.38107 -1.312015,1.38107 z"
|
||||
id="path4535-89-2-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4858"
|
||||
width="85.546875"
|
||||
height="92.578125"
|
||||
x="306.9877"
|
||||
y="18.756477"
|
||||
ry="6.9977417" />
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4916"
|
||||
width="64.081551"
|
||||
height="59.662136"
|
||||
x="317.72037"
|
||||
y="-23.213501"
|
||||
ry="6.9977398" />
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4918"
|
||||
width="34.802914"
|
||||
height="78.997086"
|
||||
x="332.35968"
|
||||
y="-85.085342"
|
||||
ry="6.9977398" />
|
||||
</g>
|
||||
<g
|
||||
id="g5512">
|
||||
<rect
|
||||
y="140.51012"
|
||||
x="445.10938"
|
||||
height="25.194067"
|
||||
width="35.619488"
|
||||
id="rect5413"
|
||||
style="opacity:1;fill:url(#linearGradient5416);fill-opacity:1;stroke:none;stroke-width:1.77165353;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.6047133,0,0,-1.6047133,216.76391,891.46624)"
|
||||
id="g5403">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4513-7"
|
||||
d="m 146.79795,448.95145 c -1.46053,0 -1.5784,0.71788 -2.03531,1.17478 -0.4569,0.45692 -0.57018,0.53666 -1.23934,0.71595 -0.66918,0.17933 -1.05823,0.45218 -1.05823,1.05823 l 0,1.34039 c 0,0.46107 0.54109,0.87195 1.51077,0.87195 l 9.10342,0 0.67423,0 9.10341,0 c 0.96968,0 1.51075,-0.41088 1.51075,-0.87195 l 0,-1.34039 c 0,-0.60605 -0.38904,-0.8789 -1.0582,-1.05823 -0.66919,-0.17929 -0.78244,-0.25903 -1.23936,-0.71595 -0.4569,-0.4569 -0.57477,-1.17478 -2.03529,-1.17478 l -6.20075,0 -0.83594,0 z"
|
||||
style="fill:url(#linearGradient4140);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4527);stroke-width:0.29255247px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="sccsssccssscssccs" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssssssccssssssccs"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.52705359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 148.92839,450.9982 c -0.94503,0 -1.0213,0.50007 -1.31695,0.64104 -0.29565,0.14098 -0.36895,0.16557 -0.80194,0.22087 -0.43298,0.0553 -0.48042,0.13945 -0.48042,0.32647 l 0,1.13946 c 0,0.14219 0.35011,0.269 0.97756,0.269 l 5.89046,0 0.43629,0 5.89045,0 c 0.62744,0 0.97755,-0.12682 0.97755,-0.269 l 0,-1.13946 c 0,-0.18698 0.027,-0.27115 -0.40613,-0.32647 -0.43298,-0.0553 -0.50628,-0.0799 -0.80193,-0.22087 -0.29565,-0.14101 -0.3719,-0.64104 -1.31695,-0.64104 l -4.29086,0 -0.54092,0 z"
|
||||
id="path4533-5" />
|
||||
<g
|
||||
id="g5396"
|
||||
transform="matrix(1.442108,0,0,1.442108,-61.325724,-192.49515)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 144.80422,448.02169 1.17823,0 c 0,0 0,-0.60422 -0.60422,-0.60422 -0.60422,0 -0.57401,0.60422 -0.57401,0.60422 z"
|
||||
id="path4535-4-1-01"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 146.58617,448.02169 1.17823,0 c 0,0 0,-0.60422 -0.60422,-0.60422 -0.60422,0 -0.57401,0.60422 -0.57401,0.60422 z"
|
||||
id="path4535-4-1-01-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 148.36813,448.02169 1.17823,0 c 0,0 0,-0.60422 -0.60422,-0.60422 -0.60422,0 -0.57401,0.60422 -0.57401,0.60422 z"
|
||||
id="path4535-4-1-01-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 150.15004,448.02169 1.17823,0 c 0,0 0,-0.60422 -0.60422,-0.60422 -0.60422,0 -0.57401,0.60422 -0.57401,0.60422 z"
|
||||
id="path4535-4-1-01-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4527);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 151.93199,448.02169 1.17823,0 c 0,0 0,-0.60422 -0.60422,-0.60422 -0.60422,0 -0.57401,0.60422 -0.57401,0.60422 z"
|
||||
id="path4535-4-1-01-72"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.55854473,0,0,0.55854473,190.84824,70.832502)"
|
||||
id="g5508">
|
||||
<rect
|
||||
ry="6.9977417"
|
||||
y="40.644176"
|
||||
x="445.13025"
|
||||
height="92.578125"
|
||||
width="85.546875"
|
||||
id="rect4858-6"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="6.9977398"
|
||||
y="-1.3258028"
|
||||
x="455.86292"
|
||||
height="59.662136"
|
||||
width="64.081551"
|
||||
id="rect4916-7"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.62992096;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 508.66935,-459.65748 c 0,83.08504 -127.01579,198.01969 -72.84257,274.01969 119.61948,167.815028 -18.28023,98.143871 -0.60256,154.005303 17.80083,56.250605 30.40559,40.3050862 29.34493,122.329473 -0.39444,30.503604 0,41.012194 0,41.012194"
|
||||
id="path5557"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.62992096;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 349.13397,-54.701849 c 0,0 -2.20971,-81.759221 -2.20971,-187.825241 0,-106.06602 84.52136,-69.60582 54.69029,-25.41165 -29.83106,44.19417 -116.56213,33.14563 -162.96601,16.57282 -46.40388,-16.57282 -48.80055,-60.2083 -48.61359,-81.75923 0.18549,-21.38158 38.86528,-52.16905 41.43204,-130.92524"
|
||||
id="path4954"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssc" />
|
||||
<rect
|
||||
style="opacity:1;fill:#9d0000;fill-opacity:1;stroke:none;stroke-width:10.62992096;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4958"
|
||||
width="60.9375"
|
||||
height="53.515625"
|
||||
x="36.914062"
|
||||
y="328.14346"
|
||||
ry="6.9977398" />
|
||||
<g
|
||||
id="g4997">
|
||||
<rect
|
||||
ry="1.3120228"
|
||||
y="333.65445"
|
||||
x="31.212135"
|
||||
height="6.7672191"
|
||||
width="60.628883"
|
||||
id="rect4960"
|
||||
style="opacity:1;fill:url(#linearGradient4527);fill-opacity:1;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.3120228"
|
||||
y="345.32449"
|
||||
x="25.212135"
|
||||
height="6.7672191"
|
||||
width="60.628883"
|
||||
id="rect4960-9"
|
||||
style="opacity:1;fill:url(#linearGradient4527);fill-opacity:1;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.3120228"
|
||||
y="356.99448"
|
||||
x="25.212135"
|
||||
height="6.7672191"
|
||||
width="60.628883"
|
||||
id="rect4960-4"
|
||||
style="opacity:1;fill:url(#linearGradient4527);fill-opacity:1;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.3120228"
|
||||
y="368.66452"
|
||||
x="31.212135"
|
||||
height="6.7672191"
|
||||
width="60.628883"
|
||||
id="rect4960-2"
|
||||
style="opacity:1;fill:url(#linearGradient4527);fill-opacity:1;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#9d0000;fill-opacity:1;stroke:#790000;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4956"
|
||||
width="196.66408"
|
||||
height="70.158249"
|
||||
x="-153.02232"
|
||||
y="318.73892"
|
||||
ry="6.9977398" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient4761);stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -102.65255,353.25971 85.356852,0"
|
||||
id="path5003"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
style="opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:url(#linearGradient4761);stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5005"
|
||||
cx="-102.72368"
|
||||
cy="353.33087"
|
||||
r="9.3897562" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient4761);stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -36.716641,369.58421 -5.583759,0 c -6.82855,0 -12.8391,-16.3245 -22.65513,-16.3245 -9.81605,0 -9.53152,0 -9.53152,0"
|
||||
id="path5043"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<circle
|
||||
r="5.6447558"
|
||||
cy="-336.7865"
|
||||
cx="-48.263168"
|
||||
id="circle5045"
|
||||
style="opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:url(#linearGradient4761);stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="scale(1,-1)" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5047"
|
||||
d="m -46.75875,336.9288 -5.58376,0 c -6.82855,0 -12.8391,16.3245 -22.65513,16.3245 -9.81604,0 -9.53152,0 -9.53152,0"
|
||||
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient4761);stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:url(#linearGradient4761);stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5049"
|
||||
width="10.611442"
|
||||
height="10.611429"
|
||||
x="-39.489483"
|
||||
y="364.63992"
|
||||
ry="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4761);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4761);stroke-width:1.06255758px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m -9.471739,353.2288 -11.414185,-7.88617 -0.207538,15.5648 z"
|
||||
id="path5051"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="noise"
|
||||
style="display:none;opacity:0.17700004">
|
||||
style="display:none;opacity:0.17700004"
|
||||
transform="translate(154.79398,362.30316)">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:none;stroke-width:7.08661413;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter9442)"
|
||||
id="rect8090"
|
||||
|
||||
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 111 KiB |
@@ -4,6 +4,6 @@
|
||||
|
||||
#export DISPLAY=:0.0
|
||||
sleep 2
|
||||
xmodmap ~/r_e_c_u_r/dotfiles/.remap
|
||||
xmodmap ~/r_e_c_u_r/dotfiles/.remap &
|
||||
python3 ~/r_e_c_u_r/r_e_c_u_r.py
|
||||
|
||||
|
||||
6
dotfiles/lcd_display_drivers/LCD-show/
/99-calibration.conf-101-1024x600
Executable file
6
dotfiles/lcd_display_drivers/LCD-show/
/99-calibration.conf-101-1024x600
Executable file
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "4034 31 11 3879"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
6
dotfiles/lcd_display_drivers/LCD-show/LCD-hdmi
Executable file
6
dotfiles/lcd_display_drivers/LCD-show/LCD-hdmi
Executable file
@@ -0,0 +1,6 @@
|
||||
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
|
||||
49
dotfiles/lcd_display_drivers/LCD-show/LCD101-1024x600-show
Executable file
49
dotfiles/lcd_display_drivers/LCD-show/LCD101-1024x600-show
Executable file
@@ -0,0 +1,49 @@
|
||||
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
|
||||
53
dotfiles/lcd_display_drivers/LCD-show/LCD28-show
Executable file
53
dotfiles/lcd_display_drivers/LCD-show/LCD28-show
Executable file
@@ -0,0 +1,53 @@
|
||||
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
|
||||
53
dotfiles/lcd_display_drivers/LCD-show/LCD32-show
Executable file
53
dotfiles/lcd_display_drivers/LCD-show/LCD32-show
Executable file
@@ -0,0 +1,53 @@
|
||||
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
|
||||
44
dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-480x320-show
Executable file
44
dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-480x320-show
Executable file
@@ -0,0 +1,44 @@
|
||||
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
|
||||
44
dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-800x480-show
Executable file
44
dotfiles/lcd_display_drivers/LCD-show/LCD35-HDMI-800x480-show
Executable file
@@ -0,0 +1,44 @@
|
||||
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
|
||||
52
dotfiles/lcd_display_drivers/LCD-show/LCD35-show
Executable file
52
dotfiles/lcd_display_drivers/LCD-show/LCD35-show
Executable file
@@ -0,0 +1,52 @@
|
||||
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
|
||||
52
dotfiles/lcd_display_drivers/LCD-show/LCD35B-show
Executable file
52
dotfiles/lcd_display_drivers/LCD-show/LCD35B-show
Executable file
@@ -0,0 +1,52 @@
|
||||
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
|
||||
52
dotfiles/lcd_display_drivers/LCD-show/LCD35CPLD-show
Executable file
52
dotfiles/lcd_display_drivers/LCD-show/LCD35CPLD-show
Executable file
@@ -0,0 +1,52 @@
|
||||
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
|
||||
48
dotfiles/lcd_display_drivers/LCD-show/LCD4-800x480-show
Executable file
48
dotfiles/lcd_display_drivers/LCD-show/LCD4-800x480-show
Executable file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
52
dotfiles/lcd_display_drivers/LCD-show/LCD4-show
Executable file
52
dotfiles/lcd_display_drivers/LCD-show/LCD4-show
Executable file
@@ -0,0 +1,52 @@
|
||||
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
|
||||
48
dotfiles/lcd_display_drivers/LCD-show/LCD43-show
Executable file
48
dotfiles/lcd_display_drivers/LCD-show/LCD43-show
Executable file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
48
dotfiles/lcd_display_drivers/LCD-show/LCD5-show
Executable file
48
dotfiles/lcd_display_drivers/LCD-show/LCD5-show
Executable file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
49
dotfiles/lcd_display_drivers/LCD-show/LCD7-1024x600-show
Executable file
49
dotfiles/lcd_display_drivers/LCD-show/LCD7-1024x600-show
Executable file
@@ -0,0 +1,49 @@
|
||||
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
|
||||
49
dotfiles/lcd_display_drivers/LCD-show/LCD7-800x480-show
Executable file
49
dotfiles/lcd_display_drivers/LCD-show/LCD7-800x480-show
Executable file
@@ -0,0 +1,49 @@
|
||||
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
|
||||
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt
Executable file
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt
Executable file
@@ -0,0 +1,64 @@
|
||||
# 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
|
||||
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-180
Executable file
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-180
Executable file
@@ -0,0 +1,64 @@
|
||||
# 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
|
||||
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-270
Executable file
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-270
Executable file
@@ -0,0 +1,64 @@
|
||||
# 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
|
||||
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-90
Executable file
64
dotfiles/lcd_display_drivers/LCD-show/boot/config-101-1024x600.txt-90
Executable file
@@ -0,0 +1,64 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-180
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-180
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-270
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-270
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-90
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-32.txt-90
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-180
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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=1,pmax=255,xohms=60,xmin=200,xmax=3900,ymin=200,ymax=3900
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-270
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-270
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-90
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35.txt-90
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt
Executable file
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt
Executable file
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-270
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-270
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-35H-480x320.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-180
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-180
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-270
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-270
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-90
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35b.txt-90
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-180
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-180
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-270
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-270
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-90
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-35cpld.txt-90
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270
Executable file
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-270
Executable file
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-4-800x480.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-180
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-180
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-270
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-270
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-90
Executable file
58
dotfiles/lcd_display_drivers/LCD-show/boot/config-4.txt-90
Executable file
@@ -0,0 +1,58 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-270
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-270
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-43.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt
Executable file
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt
Executable file
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-270
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-270
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-5.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt
Executable file
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt
Executable file
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-270
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-270
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-1024x600.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt
Executable file
62
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt
Executable file
@@ -0,0 +1,62 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-180
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-180
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-270
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-270
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-90
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/boot/config-7-800x480.txt-90
Executable file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
56
dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt
Executable file
56
dotfiles/lcd_display_drivers/LCD-show/boot/config-nomal.txt
Executable file
@@ -0,0 +1,56 @@
|
||||
# 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
|
||||
1
dotfiles/lcd_display_drivers/LCD-show/boot/mark
Normal file
1
dotfiles/lcd_display_drivers/LCD-show/boot/mark
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
1
dotfiles/lcd_display_drivers/LCD-show/cmdline.txt
Executable file
1
dotfiles/lcd_display_drivers/LCD-show/cmdline.txt
Executable file
@@ -0,0 +1 @@
|
||||
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
|
||||
1
dotfiles/lcd_display_drivers/LCD-show/cmdline.txt-noobs
Executable file
1
dotfiles/lcd_display_drivers/LCD-show/cmdline.txt-noobs
Executable file
@@ -0,0 +1 @@
|
||||
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
|
||||
63
dotfiles/lcd_display_drivers/LCD-show/dtc.sh
Executable file
63
dotfiles/lcd_display_drivers/LCD-show/dtc.sh
Executable file
@@ -0,0 +1,63 @@
|
||||
#!/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
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "4034 31 11 3879"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "31 4034 3879 11"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "31 4034 11 3879"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "4034 31 3879 11"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "219 3835 3984 219"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3835 219 219 3984"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3835 219 3984 219"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "219 3835 219 3984"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 294 3801"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "300 3932 3801 294"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "300 3932 294 3801"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 3801 294"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "190 3991 243 3895"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 294 3801"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "300 3932 3801 294"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "300 3932 294 3801"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 3801 294"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "82 3941 127 3875"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 3801 294"
|
||||
Option "SwapAxes" "0"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "300 3932 3801 294"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "calibration"
|
||||
MatchProduct "ADS7846 Touchscreen"
|
||||
Option "Calibration" "3932 300 294 3801"
|
||||
Option "SwapAxes" "1"
|
||||
EndSection
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user