如何让 pi-topCEED 屏幕与 Android Things 一起工作

How do I make the pi-topCEED screen work with Android Things

当我尝试 Android Things DP3 with the pi-topCEED 时,启动屏幕显示不正确:

如何使用适当的显示参数配置 Android 事物:

  • 挂载sdcard镜像启动分区

    # on my system
    mount /dev/sdb1 /mnt/disk
    
  • 将以下值附加到 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
    
  • 卸载并弹出您的 SD 卡

    umount /dev/disk
    sync
    

(Source, Previous Answer)