Add 1366x768 mode(10).

This commit is contained in:
sorgelig
2018-03-28 02:36:48 +08:00
parent 0e42d1a134
commit 9f48518615
2 changed files with 13 additions and 14 deletions

View File

@@ -26,12 +26,10 @@ dvi_mode=0 ; set to 1 for DVI mode. Audio won't be transmitted throu
; 7 - 1280x720@50
; 8 - 1920x1080@60
; 9 - 1920x1080@50
;
; custom mode: 0,hact,hfp,hs,hbp,vact,vfp,vs,vbp,4,M,3,N,5,C0,9,CP,8,BW,7,Mfrac
; 0,1280,48,112,248,1024,1,3,38,4,1028,3,65536,5,514,9,2,8,7,7,0xA3D709E8
;10 - 1366x768@60
;
; custom mode: 1,hact,hfp,hs,hbp,vact,vfp,vs,vbp,Fpix
; 1,1280,48,112,248,1024,1,3,38,108
; 1,1280,110,40,220,720,5,5,20,74.25
video_mode=0
; set to 1-10 (seconds) to display video info on startup/change

View File

@@ -1956,16 +1956,17 @@ struct vmode_t
vmode_t vmodes[] =
{
{ { 1280, 110, 40, 220, 720, 5, 5, 20 }, 74.25 },
{ { 1024, 24, 136, 160, 768, 3, 6, 29 }, 65 },
{ { 720, 16, 62, 60, 480, 9, 6, 30 }, 27 },
{ { 720, 12, 64, 68, 576, 5, 5, 39 }, 27 },
{ { 1280, 48, 112, 248, 1024, 1, 3, 38 }, 108 },
{ { 800, 40, 128, 88, 600, 1, 4, 23 }, 40 },
{ { 640, 16, 96, 48, 480, 10, 2, 33 }, 25.175 },
{ { 1280, 440, 40, 220, 720, 5, 5, 20 }, 74.25 },
{ { 1920, 88, 44, 148, 1080, 4, 5, 36 }, 148.5 },
{ { 1920, 528, 44, 148, 1080, 4, 5, 36 }, 148.5 },
{ { 1280, 110, 40, 220, 720, 5, 5, 20 }, 74.25 },
{ { 1024, 24, 136, 160, 768, 3, 6, 29 }, 65 },
{ { 720, 16, 62, 60, 480, 9, 6, 30 }, 27 },
{ { 720, 12, 64, 68, 576, 5, 5, 39 }, 27 },
{ { 1280, 48, 112, 248, 1024, 1, 3, 38 }, 108 },
{ { 800, 40, 128, 88, 600, 1, 4, 23 }, 40 },
{ { 640, 16, 96, 48, 480, 10, 2, 33 }, 25.175 },
{ { 1280, 440, 40, 220, 720, 5, 5, 20 }, 74.25 },
{ { 1920, 88, 44, 148, 1080, 4, 5, 36 }, 148.5 },
{ { 1920, 528, 44, 148, 1080, 4, 5, 36 }, 148.5 },
{ { 1366, 70, 143, 213, 768, 3, 3, 24 }, 85.5 },
};
#define VMODES_NUM (sizeof(vmodes) / sizeof(vmodes[0]))