• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » DLP & MEMS » DLP LightCommander Development Platform » Queries on Programming DLP LightCommander
Share
DLP & MEMS
  • Forums
Options
  • Subscribe via RSS

Queries on Programming DLP LightCommander

Queries on Programming DLP LightCommander

This question is answered
Temkar Ruckmongathan
Posted by Temkar Ruckmongathan
on May 14 2012 03:29 AM
Prodigy45 points

Hello,

I have been programming the DLP LC that we have, using LogicPD's Light Commander Control Software (LLCCS) and also using APIs provided by TI.

1. I was able to load and display desired no. of images at desired frame rates using both LLCCS and APIs. But the problem is that, once the LED intensities (of RGB)are set, these settings remains the same for all these images. But i want different LEDs to be ON for different images and also different LED intensity levels for different images.

  I tried calling the function (APIs) that sets these intensity levels of the three LEDs in an infinite loop, but the rate was too low.(Image frame rate desired is in the range of  500 fps but the rate of LED intensity variation that was possible by this method was in the range of 20 fps, depending upon processor's speed)

So, how can i have different LED intensity levels for different images and display these images at desired frame rate(around 500fps)?

2. i think to get such high rate of intensity changes, the only solution is to program the flash memory because serial comm can never be that fast. but we can load only the binary files created by LLCCS onto the flash memory and LLCCS  doesnt convert the batch file that i have written into binary files.

So, how to program the flash memory to achieve my objective? is there any memory map for the flash memory present inside DLP LC? i thought of loading 3 to 4 batch files(converted into a binary file using LLCCS) on to flash memory and run them in a loop.. but can i  do this??

i request you to please help me on this regard.

Thanking you,

Shashanka(Student of Temkar Ruckmongathan)

Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • Sanjeev
    Posted by Sanjeev
    on May 15 2012 06:58 AM
    Verified Answer
    Verified by Temkar Ruckmongathan
    Expert5745 points

    Hi Shashanka,

    Welcome to DLP&MEMS forum.

    Your response to the questions below.

    1. The support for enabling different LEDs for different images and applying different intensity for different images is not there in the system. However, we would like to note such requests and will use it while developing future platforms.

    2. As I mentioned in (1) at 500Hz the LED driver used in the system not designed for accepting current intensity changes and also the system has no mechanism in place to synchronise the LED intensity update to image displayed. So even if you create a binary and program the flash it will not help. At present we don't have plans to expose the flash configuration map information.

    Regards,
    Sanjeev

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Temkar Ruckmongathan
    Posted by Temkar Ruckmongathan
    on May 16 2012 00:55 AM
    Prodigy45 points

    Dear Sanjeev,

    Thank you for responding for my questions. It was helpful.

    I had asked the same question to LogicPD's tech support team and this is what they replied,

    "Depending on timing, you could use the API to switch between two or more sequences stored in flash with different patterns and different LED intensity settings."

    I am not sure how to achieve this(ie, how to store more than one sequence in flash memory). Is this possible? If so, Can you please throw some light on this matter??

    Thanking you,

    Shashanka

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Sanjeev
    Posted by Sanjeev
    on May 16 2012 01:23 AM
    Expert5745 points

    Dear Shashanka,

    What they are mentioning is basically asking you to build one "Project" with several 'Solution' in it. And each solution will contain a specific LED selection and LED intensity configuration information.

    For example, let us say there are 10 images and you are interested to select combination of LEDs and at a particular intensity. So this requires building 10 solutions in a project.

    Upon building the "Project" (Tool menu Execute->BuildFlashImage in the GUI) it will generate single user flash binary under the project along with xml map. XML has map information of the binary file built. Look for <Record> with "soluton" name, something like this

    <Record>
     <Type>Solution</Type>
     <StartAddress>131072</StartAddress>
     <Length>13312</Length>
     <Name>Solution1</Name>
    </Record>
     
    For each solution note down the 'Start Adress'. Load the binary in the LightCommander(TM) it comes up with the default "solution" then call this API to load 
    the configuration using DLP_RegIO_InitFromParallelFlashOffset API.
    I see one issue with this approach though, you will not be able to maintain the 500fps rate b/w the images. There will over head time of loading the solution.
    Regards,
    Sanjeev
     
     
     

     
     
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Temkar Ruckmongathan
    Posted by Temkar Ruckmongathan
    on May 16 2012 01:47 AM
    Prodigy45 points

    Dear Sanjeev,

    Thank you for responding so soon. I ll definitely try this solution.

    So, if my "Project" has many "Solution"s and then i  "BuildFlashImage", and "ProgramFlash" this binary file, then the GUI creates binary files to all these "solution"s and loads them on to the Flash memory with each solution having its own starting address??

    and once i load this binary file to Flash memory, will the processor display all these solutions in sequential manner? or should i use APIs to write a program that will ask the processor to execute the contents in the flash memory form the starting address specified??

    Thanking You,

    Shashanka

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Sanjeev
    Posted by Sanjeev
    on May 16 2012 01:55 AM
    Expert5745 points

    Hi Shashanka,

    The processor will NOT display all these solutions in sequential manner.You will have to provide the 'StartAdress' information to the DLPC200 then it will go to that adress and loads the configuration.

    The "StartAddress" of  each solution which is stored in the flash you will get from XML file. Then just call DLP_RegIO_InitFromParallelFlashOffset  API to load the configuration.

    Regards,
    Sanjeev

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Temkar Ruckmongathan
    Posted by Temkar Ruckmongathan
    on May 16 2012 02:04 AM
    Prodigy45 points

    Hi Sanjeev,

    Thank you again for responding. I ll try this solution and let you know what happened. (Previous Question was redundant, but i wanted to be sure.) And yes, Frame rate ll be a problem. But i ll try never the less.

    Thanks a lot for all your help.

    Shashanka

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use