My TV is a Samsung 65" NU740D Smart 4K UHD TV
This is the manual for it. The picture sizes and input signals are listed on page 134.
https://downloadcenter.samsung.com/c...G_201023.0.pdf
In case you can't get to it, it lists these input signals for a 16:9 picture size:
HDMI (720p)
HDMI (1080i, 1080p)
HDMI (3840 x 2160p)
HDMI (4096 x 2160p)
*HDMI (7680 x 4320p @ 30 Hz)
On page 136, it says this:
Read Before Connecting a Computer (Supported Resolutions)
Check the resolutions supported for PC input signals.
When you connect your TV to a computer, set the computer's video card to one of the standard resolutions listed in
the tables below or on the next page. The TV will automatically adjust to the resolution you choose. Note that the
optimal and recommended resolution is 3840 x 2160 at 60 Hz. Choosing a resolution not included in the tables can
result in a blank screen or just the power indicator turning on. Refer to the user manual of your graphics card for
compatible resolutions
So, here is my /boot/firmware/config.txt and the beginning part of /boot/firmware/usercfg.txt:
Code:
[pi4]
max_framebuffers=2
[all]
kernel=vmlinuz
cmdline=cmdline.txt
initramfs initrd.img followkernel
# Enable the audio output, I2C and SPI interfaces on the GPIO header
dtparam=audio=on
dtparam=i2c_arm=on
dtparam=spi=on
# Enable the KMS ("full" KMS) graphics overlay, and allocate 128Mb to the GPU
# memory. The full KMS overlay is required for X11 application support under
# wayland
dtoverlay=vc4-kms-v3d
gpu_mem=128
# Uncomment the following to enable the Raspberry Pi camera module firmware.
# Be warned that there *may* be incompatibilities with the "full" KMS overlay
#start_x=1
# Comment out the following line if the edges of the desktop appear outside
# the edges of your display
disable_overscan=1
# If you have issues with audio, you may try uncommenting the following line
# which forces the HDMI output into HDMI mode instead of DVI (which doesn't
# support audio output)
#hdmi_drive=2
# If you have a CM4, uncomment the following line to enable the USB2 outputs
# on the IO board (assuming your CM4 is plugged into such a board)
#dtoverlay=dwc2,dr_mode=host
# Config settings specific to arm64
arm_64bit=1
dtoverlay=dwc2
include usercfg.txt
Code:
# Place "config.txt" changes (dtparam, dtoverlay, disable_overscan, etc.) in
# this file. Please refer to the README file for a description of the various
# configuration files on the boot partition.
## Custom Slot is hdmi_grpoup=1 & hdmi_mode=65
### For this define, it uses mode 87, which is 1 above the defined modes...
#### Custom mode define ####
# hdmi_cvt=<width> <height> <framerate> <aspect> <margins> <interlace> <rb>
# width width in pixels
# height height in pixels
# framerate framerate in Hz
# aspect aspect ratio 1=4:3, 2=14:9, 3=16:9, 4=5:4, 5=16:10, 6=15:9
# margins 0=margins disabled, 1=margins enabled
# interlace 0=progressive, 1=interlaced
# rb 0=normal, 1=reduced blanking
###
hdmi_cvt=3840 2160 60 3 0 0 0 # Custom mode definition
#hdmi_group=2
#hdmi_mode=87 #1 mode above defines in AEC
### Normal Mode Sets
#hdmi_group=2 # 0:Autodetect EDID, 1:AEC, 2:DMT
#hdmi_mode=86 # 1366x768, 60Hz,16:9, reduced blanking
### For sound through HDMI ###
#hdmi_drive=1 # hdmi without soundhdmi_group=2 # 0:Autodetect EDID, 1:AEC, 2:DMT
### For sound through HDMI ###
#hdmi_drive=2 # hdmi with sound
Bookmarks