Code: Select all
video_mode=2048,48,32,80,1536,2,4,38,209250
Code: Select all
video_mode=2048,48,32,80,1536,2,4,38,209250
What option, if any, do you use to scale the image to full screen display?Milongero wrote: ↑Tue May 26, 2020 1:40 pm I have found a page with all VESA Standards
http://tinyvga.com/vga-timing
I have tested this one for my 4x3 monitor: DELL 2001FP
video_mode=1400,88,152,240,1050,1,3,33,122610 (1400x1050@60Hz)
video_mode=1600,64,192,304,1200,1,3,46,162000 (1600x1200@60Hz)
video_mode=1400,88,152,240,1050,1,3,33,102175 (1400x1050@50Hz)
Sure, it's way beyond official max. But it worksGrabulosaure wrote: ↑Tue May 26, 2020 1:30 pm Note that this setting, 209.250MHz, is in the realm of ruthless over-clocking.
The FPGA scaler was pipelined in order to reach 150MHz, for 1080p Full-HD.
The Analog Devices HDMI encoder datasheet indicates 165MHz as max frequency (for 1920x1200)
Anything beyond ≈180MHz isn't guaranteed to work, or may only work with some cores, or not all FPGAs, or when the FPGA is well cooled.
To reduce frequency, it is sometimes possible to reduce synchro/blanking times (here the 48, 32, 80, 2, 4 ,38 numbers), but each screen model can need different settings.
Code: Select all
[Menu]
video_mode=512,42,62,64,224,11,21,6,10689
vga_scaler=1
There’s a way to do this? I thought the iPad could only do HDMI out, not HDMI in?
You can purchase the display used in the iPad 3/4 with an HDMI input.
I though it was fixed already. There were many folding pixels?
Code: Select all
IF o_dcptv(1)>o_hsize THEN
o_copyv(2)<='0';
END IF;
Code: Select all
IF o_dcptv(1)>=o_hsize THEN
Only one.Grabulosaure wrote: ↑Tue May 26, 2020 7:37 pmI though it was fixed already. There were many folding pixels?
i didn't count the pixels. Code is here: https://github.com/MiSTer-devel/Menu_Mi ... nu.sv#L362Sigismond0 wrote: ↑Tue May 26, 2020 8:19 pm Sorgelig,
Would you be able to share the resolution (or even better the full video_mode line) that the IO board outputs the menu in when not using vga_scaler? I'm working with some people on defining custom [Menu] profiles, and it would be nice to have that default resolution as a starting point. Thanks!
This also works. So i've changed to this fix. Thanks!Grabulosaure wrote: ↑Tue May 26, 2020 7:37 pm (and '>=' should even be a little bit smaller than '>')
Only exception I can think of off the top of my head is GBA. For 1920x1440 display, you have to drop down to 8x scale which would be a fully windowboxed 1920x1280. But if 2160x1440 is possible, that would work as a perfect 9x scale and fill the vertical resolution.
Would love to know where to get this backgroundSigismond0 wrote: ↑Tue May 26, 2020 5:26 pm This video mode is the best I've found so far for displaying the menu with a VGA scaler. Very useful for anyone wanting to run scripts without HDMI, or who just want a wallpaper on CRT.
The 512x224 resolution gets the menu aspect ratio very close to where it is without VGA scaler on, and should get your H/V center and overscan just about perfect if you calibrated your TV using 240p test suite on SNES.Code: Select all
[Menu] video_mode=512,42,62,64,224,11,21,6,10689 vga_scaler=1
Thanks for this. I tried in on my BVM 20F but no luck. The image shows but there is some strange colour artifact effect. I'll try on my PVM which is the same model as yours.Sigismond0 wrote: ↑Tue May 26, 2020 5:26 pm This video mode is the best I've found so far for displaying the menu with a VGA scaler. Very useful for anyone wanting to run scripts without HDMI, or who just want a wallpaper on CRT.
The 512x224 resolution gets the menu aspect ratio very close to where it is without VGA scaler on, and should get your H/V center and overscan just about perfect if you calibrated your TV using 240p test suite on SNES.Code: Select all
[Menu] video_mode=512,42,62,64,224,11,21,6,10689 vga_scaler=1
Interference color patterns on that test pattern wallpaper specifically, or color artifacts in general? I wouldn't be surprised to see them on that specific wallpaper, as the various lines may not match the mask/grill on the CRT in a way that works perfectly. But if it's giving you color artifacts on other wallpapers or the menu itself, I'd be interested in seeing a picture.
Looking forward to this feature, as I believe this will solve lots of scaling issues on some TVs.Grabulosaure wrote: ↑Mon Jun 01, 2020 8:18 am I would like to add to the scaler outputs the detected input image size. It would then be possible to select any number of lines to crop from top/bottom of images
(and from sides, but it's likely far less useful.)
I would love to have such a feature. I mentioned this in my ["ranty" ] thread about vertical scrollers.