Last modified by Leon Poon on 2021/03/05 12:25

From version 15.1
edited by Leon Poon
on 2019/03/30 17:33
Change comment: There is no comment for this version
To version 17.1
edited by Leon Poon
on 2019/04/28 04:45
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -12,7 +12,7 @@
12 12  Modeline "2560x1600R" 268.50 2560 2608 2640 2720 1600 1603 1609 1646 +hsync -vsync
13 13  {{/code}}
14 14  
15 -edid.bin:
15 +edid.bin (you should insert your own monitor serial number):
16 16  
17 17  {{code}}
18 18  0000000 ff00 ffff ffff 00ff ac10 4064 0000 0000
... ... @@ -296,3 +296,27 @@
296 296  +00000f0 001a 0000 0000 0000 0000 0000 0000 1600
297 297   0000100
298 298  {{/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 +{{/code}}