|
Post by desiredshoe on Jun 1, 2021 16:16:41 GMT -8
Just bought a Dazzler to play around with and was wondering if it had the capability to output 1920x720 by overclocking/firmware modding?
|
|
|
Post by desiredshoe on Jun 11, 2021 21:46:23 GMT -8
Thanks for all the help everyone, I really appreciate it! /s
|
|
mattp
Full Member
 
Posts: 37
|
Post by mattp on Jul 5, 2021 2:33:07 GMT -8
|
|
|
Post by avanti on Jul 5, 2021 6:43:05 GMT -8
Are the above values the recommended ones for the Dazzler? Where did they come from?
|
|
mattp
Full Member
 
Posts: 37
|
Post by mattp on Jul 6, 2021 4:21:45 GMT -8
They are the example from the EVE programmer's guide. If you look in the dazzler code. github.com/jamesbowman/gd3x-dazzler/blob/master/firmware/makeboot.pydef setup_1280x720(self): self.Clear() self.swap() setup = [ (eve.REG_OUTBITS, 0), (eve.REG_DITHER, 0), (eve.REG_GPIO, 0x83), (eve.REG_CSPREAD, 0), (eve.REG_PCLK_POL, 0), (eve.REG_ADAPTIVE_FRAMERATE, 0), ] for (a, v) in setup: self.cmd_regwrite(a, v)
self.video_signal( h_Active = 1280, h_Front = 110, h_Sync = 40, h_Back = 220, h_Total = 1650, v_Active = 720, v_Front = 5, v_Sync = 5, v_Back = 20, v_Total = 750) self.w = 1280 self.h = 720
You can build a new firmware yourself and add it to the menu to try things out.
|
|
|
Post by armadafg on Jul 23, 2021 4:34:43 GMT -8
Just bought a Dazzler to play around with and was wondering if it had the capability to output 1920x720 by overclocking/firmware modding? Hi, Basically, with the GD2 library, the frequency of the BT81x chips is 60Mhz. Except in order to be able to generate 1.38 Mega pixel (1920 * 720 = 1382 400) at 60 images per second, it is necessary to increase the frequency to 72 Mhz. But I can't find the right commands. Therefore in 1.4Mega pixel the display frequency drops below 60hz. for example if you have: h_Active = 1280, h_Front = 110, h_Sync = 40, h_Back = 220, h_Total = 1650, v_Active = 720, v_Front = 5, v_Sync = 5, v_Back = 20, v_Total = 750 1650 * 750 = 1 237 500 (the total number of pixels generated by the gpu) 60 000 000 / 1 237 500 =48.48 you will therefore have 48 images per second with its settings. But with the BT815 to the BT818 it is possible to go from 60Mz to 72Mz (and even more with overclooking, but hardware modification is necessary) So if I calculate them with 72Mhz : 72000 000 / 1 237 500 =58.1 So 58 images per second with its settings. Another method will also be to reduce to a minimum of inactive mixel by minimizing the difference between Active and Total seting. (for v and h)
|
|
|
Post by armadafg on Jul 23, 2021 4:43:07 GMT -8
I will also be working on an SLI system between two or more BT 818, or 817, whatever. So I could go up to 1080p and have more performance if I put more than 2 chips. My goal is to have 1080p in 120hz in HDMI
|
|