Add DPMS as a supported feature on the EDID data

This commit is contained in:
RichardG867
2021-04-14 16:32:29 -03:00
parent f0df74f248
commit 96819d71fe

View File

@@ -148,7 +148,7 @@ ddc_init(void *i2c)
edid->input_params = 0x0e; /* analog input; separate sync; composite sync; sync on green */ edid->input_params = 0x0e; /* analog input; separate sync; composite sync; sync on green */
edid->horiz_size = horiz_mm / 10; edid->horiz_size = horiz_mm / 10;
edid->vert_size = vert_mm / 10; edid->vert_size = vert_mm / 10;
edid->features = 0x0b; /* RGB color; first timing is preferred; GTF/CVT */ edid->features = 0xeb; /* DPMS standby/suspend/active-off; RGB color; first timing is preferred; GTF/CVT */
edid->red_green_lsb = 0x81; edid->red_green_lsb = 0x81;
edid->blue_white_lsb = 0xf1; edid->blue_white_lsb = 0xf1;