2-4K resolution possible?

All about WTware on Raspberry. WTware works with Raspberry Pi 4, Raspberry Pi 3B+, Pi 3 and Pi 2 devices
http://www.winterminal.com
Post Reply
Overmind
Posts: 8
Joined: Thu May 28, 2020 10:56 am

2-4K resolution possible?

Post by Overmind »

we want to buy 2K or 4k monitors, but in the "Raspberry firmware config.txt" you can only set a maximum resolution of 1920x1200.

We currently need a resolution of 2560x1440 on only one display, the second display HDMI port is not used.

Later then a resolution of 3840 x 2160

We use Raspberry Pi 4 versions
aka
SUPPORT
SUPPORT
Posts: 939
Joined: Fri Dec 03, 2004 2:05 pm
Contact:

Re: 2-4K resolution possible?

Post by aka »

Please try:

https://forums.raspberrypi.com/viewtopic.php?t=280976

Code: Select all

The following lines in /boot/config.txt worked to get a single 2560 x 1440 display working at 50hz:

# uncomment to force a specific HDMI mode (this will force VGA)
hdmi_group=2
hdmi_mode=88
hdmi_cvt=2560 1440 50 3 0 0
Or another solution:

https://forums.raspberrypi.com/viewtopi ... 0#p1492120

Code: Select all

hdmi_group=2
hdmi_mode=87
max_framebuffer_width=2560
max_framebuffer_height=1440
hdmi_pixel_freq_limit=250000000
hdmi_cvt=2560 1440 56 5 0 0 1
hdmi_ignore_edid=0xa5000080
Post Reply