How to make pi-topCEED screen work with Android Things

When I try Android Things DP3 with pi-topCEED the loading screen is not displayed correctly:

boot screen fail

How to set up Android Things with the appropriate display option:

  • Resolution: 1366x768

  • Update frequency: 60hz

+3


source to share


1 answer


  • Install the boot partition of the sdcard image

    # on my system
    mount /dev/sdb1 /mnt/disk
    
          

  • Add the following value to config.txt

    # Define new custom HDMI mode <width> <height> <refresh_rate>
    hdmi_cvt 1366 768 60
    # Select HDMI DMT mode (computer screen)
    hdmi_group=2
    # Select custom mode defined earlier
    hdmi_mode=87
    
          

  • Unplug and remove your SD card

    umount /dev/disk
    sync
    
          

enter image description here



( Source , previous answer )

+4


source







All Articles