Luckfox Omni3576 Boot Failure and Touchscreen Malfunction with Waveshare 70H-1024600

  • Due to the wide variety of HDMI display devices, 1024×600 is not a standard HDMI resolution (i.e., it is not defined in CEA/VESA standard timings). Therefore, this resolution is not included by default in the Rockchip SDK, and the system cannot automatically recognize or configure it during boot.

    Based on test results, the display works correctly after manual configuration, which indicates that the hardware link is functioning properly. The issue mainly lies in the fact that the system does not include this resolution as a built-in default display mode.

    We have reported this issue to the engineering team for evaluation and potential optimization (such as adding default timing support or improving compatibility). However, since this involves low-level driver modifications, the fix may take some time.

    Temporary Solution

    At this stage, it is recommended to dynamically add the resolution during system startup using xrandr:

    export DISPLAY=:0
    xrandr --newmode "1024x600_test" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync
    xrandr --addmode HDMI-1 "1024x600_test"
    xrandr --output HDMI-1 --mode "1024x600_test"

    This method has been verified to provide stable display output and is recommended as a temporary workaround at the current stage.

    Additional Note

    If touch functionality is required, please ensure that DSI is disabled; otherwise, touch input may not function properly.