Changes for page Dell U3011 HDMI EDID override
Last modified by Leon Poon on 2021/03/05 12:25
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,7 @@ 1 1 HDMI 2560x1600@60Hz. 2 2 3 +[[image:IMG-20190331-WA0002.jpg||alt="2560x1600@60Hz Sweeet"]] 4 + 3 3 {{code language="bash"}} 4 4 #!/bin/bash 5 5 cvt -r 2560 1600 60 ... ... @@ -10,7 +10,7 @@ 10 10 Modeline "2560x1600R" 268.50 2560 2608 2640 2720 1600 1603 1609 1646 +hsync -vsync 11 11 {{/code}} 12 12 13 -edid.bin: 15 +edid.bin (you should insert your own monitor serial number): 14 14 15 15 {{code}} 16 16 0000000 ff00 ffff ffff 00ff ac10 4064 0000 0000 ... ... @@ -294,3 +294,27 @@ 294 294 +00000f0 001a 0000 0000 0000 0000 0000 0000 1600 295 295 0000100 296 296 {{/code}} 299 + 300 +ConvertĀ edid-hdmi.bin to windows reg file: 301 + 302 +{{code language="bash"}} 303 +hexdump -C edid-hdmi.bin | sed -r \ 304 + -e 's/ /,/g' -e 's/,,/ /g' \ 305 + -e 's/ \|.*//g' \ 306 + -e 's/^00000000 /"0"=hex:/g' \ 307 + -e 's/^00000080 /"1"=hex:/g' \ 308 + -e 's/^........ / /g' \ 309 + -e 's/(.{4}) /\1,/g' \ 310 + -e 's/$/,\\/g' 311 +{{code}} 312 + 313 +Fix the trailing commas, add your own header: 314 + 315 +{{code language="plain"}} 316 +Windows Registry Editor Version 5.00 317 + 318 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\DISPLAY\DEL4064\YOUR_UID_HEREEEEE\Device Parameters\EDID_Override] 319 +"0"=hex:... 320 +"1"=hex:... 321 +{{code}} 322 +