DLPU113A December   2021  – April 2022 DLP2021-Q1

 

  1.   Trademarks
  2. 1DLP2021-Q1 Electronics EVM Overview
    1. 1.1 Introduction
    2. 1.2 What is in the DLP2021-Q1 Light Engine EVM
      1. 1.2.1 Formatter Subsystem
      2. 1.2.2 Illumination Subsystem
      3. 1.2.3 Light Engine
      4. 1.2.4 Cables
    3. 1.3 Non-Optical Specifications
      1. 1.3.1 Electrical Specifications
      2. 1.3.2 Component Temperature Ratings
      3. 1.3.3 LED Driver Design
      4. 1.3.4 Video Specification
  3. 2Quick Start
    1. 2.1 Kit Assembly Instructions
    2. 2.2 Software Installation
    3. 2.3 Power-Up
    4. 2.4 Select Display Content
    5. 2.5 LED Driver
  4. 3Optics and Mechanics
  5. 4Software
    1. 4.1 DLP Composer
      1. 4.1.1 Default Register Configuration
      2. 4.1.2 Illumination
      3. 4.1.3 Sequence Set
      4. 4.1.4 Degamma Curves
      5. 4.1.5 Image/Video
      6. 4.1.6 Flash Blocks
      7. 4.1.7 Flash Programming
    2. 4.2 DLP Control Program
      1. 4.2.1 Connection
      2. 4.2.2 Scripting
      3. 4.2.3 Registers
      4. 4.2.4 Commands
    3. 4.3 MSP430 Example Code
  6. 5Revision History

Select Display Content

Follow these steps to run the DGP software to change the display content and settings:

  1. Turn off the supply power.

  2. Set the operation mode switches to the Host Mute operating mode as defined in Section 1.2.1.

  3. Turn on the supply power. Figure 2-3 shows the LED status of the EVM when in the Host Mute operation mode.

    GUID-20211206-SS0I-B3DZ-MLM0-FJBKGSMSPWLT-low.jpgFigure 2-3 Host Mute Operating Mode LED Status
  4. At start-up in Host Mute operation mode, the default content projected is a static image of vertical color bars.

  5. Confirm the FTDI cable is connected to the PC. While running DLP Control Program, click on the Connection list. If the FTDI cable is not already connected, click the Connect button. Note, the Connection settings must be a clock rate of 5 MHz and timeout of 500 ms.

    GUID-66B485DA-6EB6-46D7-AA25-42FC0C8DC33F-low.pngFigure 2-4 Successful FTDI Cable Connection Established in GUI

  6. Python scripts can be run from the Scripting window. The script shown below can be used to select one of the pre-programmed test patterns of the DLP2021-Q1 DGP composer project. Press the green button to run the script, and the projected content toggles between a static image and video.

  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. Before closing the GUI, click the Disconnect button in the Connection window to properly disconnect the FTDI cable interface. If the EVM is power cycled, repeat steps c and d to select and display content again.