Hello - a bit new to Pi world, but I have a Rasp 4B that I want to hook this display up to using the second HDMI port. In the documentation, there’s the config.txt settings for the 5" display, but I need to ensure these settings are only applied to the 2nd HDMI port as the 1st HDMI port has a 7" display with no special settings required.
Here’s the settings from the documentation for the 5":
force_trubo=1 (by the way, I assume this is a typo and should be ‘force_turbo’- but do I need this for the Raspberry Pi 4B? Why does this need to be enabled for this 5" monitor?)
gpu_freq=300 (again, why does this need to be specified just for this monitor?)
core_freq=400 (again, why does this need to be specified just for this monitor?)
hdmi_pixel_freq_limit=400000000 (again, why does this need to be specified just for this monitor?)
hdmi_drive=2
hdmi_mode=87
disable_overscan=1
5 inch
hdmi_timings= 720 0 100 33 100 1280 0 20 2 30 0 0 0 60 0 79000000 0
max_framebuffer_width=1280
max_framebuffer_height=1280
display_rotate=1
framebuffer_width=1280
framebuffer_height=720
So, when hooking this display up to the 2nd HDMI port on the raspberry pi 4B, would these entries change to include the HDMI port ‘:1’ suffix?:
hdmi_pixel_freq_limit:1=400000000
hdmi_drive:1=2
hdmi_mode:1=87
disable_overscan:1=1
5 inch
hdmi_timings:1= 720 0 100 33 100 1280 0 20 2 30 0 0 0 60 0 79000000 0
max_framebuffer_width:1=1280
max_framebuffer_height:1=1280
display_rotate:1=1
framebuffer_width:1=1280
framebuffer_height:1=720
Then if for some reason I wanted for force settings for Seeed’s 7" LCD connected to the first HDMI port, would I use the suffix ‘:0’ in all the similar commands above?
hdmi_pixel_freq_limit:0=400000000
hdmi_drive:0=2
hdmi_mode:0=87
disable_overscan:0=1
7 inch
hdmi_timings:0=720 0 100 24 52 1280 0 10 4 4 0 0 0 60 0 70000000 0
max_framebuffer_width:0=1280
max_framebuffer_height:0=1280
display_rotate:0=3
framebuffer_width:0=1280
framebuffer_height:0=720
Again, I’m kinda assuming these three commands below are not required, but may be? Even if they are, they do not need to be directed or a particular HDMI port or do they?
force_turbo=1
gpu_freq=300
core_freq=400
Thanks!
Joe