ZHCU932A December   2021  – April 2022 DLP2021-Q1

 

  1.   摘要
  2.   商标
  3. 1DLP2021-Q1 电子器件 EVM 概述
    1. 1.1 引言
    2. 1.2 DLP2021-Q1 光引擎 EVM 的组成
      1. 1.2.1 格式器子系统
      2. 1.2.2 照明子系统
      3. 1.2.3 光引擎
      4. 1.2.4 线缆
    3. 1.3 非光学规格
      1. 1.3.1 电气规格
      2. 1.3.2 元件温度额定值
      3. 1.3.3 LED 驱动器设计
      4. 1.3.4 视频规范
  4. 2快速入门
    1. 2.1 套件组装说明
    2. 2.2 软件安装
    3. 2.3 加电
    4. 2.4 选择显示内容
    5. 2.5 LED 驱动器
  5. 3光学元件和机械装置
  6. 4软件
    1. 4.1 DLP Composer
      1. 4.1.1 默认寄存器配置
      2. 4.1.2 照明
      3. 4.1.3 序列集
      4. 4.1.4 Degamma 曲线
      5. 4.1.5 图像/视频
      6. 4.1.6 闪存块
      7. 4.1.7 闪存编程
    2. 4.2 DLP Control Program
      1. 4.2.1 连接
      2. 4.2.2 脚本处理
      3. 4.2.3 寄存器
      4. 4.2.4 命令
    3. 4.3 MSP430 示例代码
  7. 5修订历史记录

选择显示内容

按照以下步骤运行 DGP 软件以更改显示内容和设置:

  1. 关闭电源。

  2. 将工作模式切换为 Topic Link Label1.2.1中定义的主机静音 工作模式。

  3. 打开电源。图 2-3 显示了 EVM 在主机静音 工作模式下的 LED 状态。

    GUID-20211206-SS0I-B3DZ-MLM0-FJBKGSMSPWLT-low.jpg图 2-3 主机静音工作模式下 LED 的状态
  4. 主机静音 工作模式下启动时,投影的默认内容是垂直色条的静态图像。

  5. 确认将 FTDI 线缆连接至 PC。运行 DLP Control Program 时,请点击 Connection 列表。如果还未连接 FTDI 线缆,请点击 Connect 按钮。请注意,“Connection”设置的时钟速率必须为 5MHz,超时为 500ms。

    GUID-66B485DA-6EB6-46D7-AA25-42FC0C8DC33F-low.png图 2-4 在 GUI 中成功建立 FTDI 线缆连接

  6. Python 脚本可以从脚本窗口中运行。可使用以下所示的脚本为 DLP2021-Q1 DGP composer 工程选择一个预先编程的测试图案。按下绿色按钮可运行脚本,投影的内容将在静态图像和视频之间切换。

  7. from dgp.commands import *
    #------------------------------------------------------
    #Uncomment one static test pattern
    #------------------------------------------------------
    #WriteVideoStartAddress1(0x85980) # Color Bars
    #WriteVideoStartAddress1(0x95F64)  # Color Bars Gradient
    #WriteVideoStartAddress1(0xC2734) # Solid Black
    #WriteVideoStartAddress1(0xD3830) # Solid Red
    #WriteVideoStartAddress1(0xE3E14) # Solid Green
    #WriteVideoStartAddress1(0xF43F8) # Solid Blue
    #WriteVideoStartAddress1(0x1049DC) # Solid White
    #WriteVideoStartAddress1(0x114FC0) # Black to White Gradient
    #WriteVideoStartAddress1(0x1546C8) # Checkerboard
    #WriteVideoStartAddress1(0x179F3C) # MTF Chart
    WriteVideoStartAddress1(0x1A2280) # Bird
    WriteVideoConfiguration1(1,30)
    #------------------------------------------------------
    #Uncomment the desired video test pattern
    #------------------------------------------------------
    WriteVideoStartAddress2(0x20A98C) # Race Car
    WriteVideoConfiguration2(220,1)
    #------------------------------------------------------
    # Configure and run video control
    #------------------------------------------------------
    VideoControl = VideoControl()
    VideoControl.Play = True
    VideoControl.Stop = False
    VideoControl.Autostop = False
    VideoControl.BufPtr = 0 
    VideoControl.LoopConfigs = True
    VideoControl.ToggleConfigs = True
    WriteVideoControl(VideoControl)
    
  8. 在关闭 GUI 之前,请点击 Connection 窗口中的 Disconnect 按钮,以正确断开 FTDI 线缆接口的连接。如果 EVM 已下电上电,请重复步骤 cd 以重新选择和显示内容。