• 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 » Digital Signal Processors (DSP) » C6000 Single Core DSP » C64x Single Core DSP Forum » All Tags » DM642
Share
C6000 Single Core DSP
  • Forums
  • Announcements

Browse by Tags

C6000 Single Core DSP

Welcome to the C6000 Single Core DSP Section of the TI E2E Support Community. Ask questions, share knowledge, explore ideas, and help solve problems with fellow engineers. To post a question, click on the forum tab then "New Post".

Sign In to Post
Tags
You have subscribed to this tag. To view or manage your tag subscriptions, click here.   Close
You have unsubscribed from this tag. To view or manage your tag subscriptions, click here.   Close
You are currently viewing:
DM642
  • 6437
  • 6455
  • BIOS
  • BIOS/DSP
  • C
  • c6000
  • C64x Single Core DSP Forum
  • C64x+
  • cache
  • CCS
  • CCS v3.3
  • chip support library
  • compiler
  • CSL
  • DM648
  • dsp
  • DSP/BIOS
  • EMAC
  • Ethernet
  • McBSP
  • NDK
  • NDK 2.0
  • NDK TCP
  • TMS320C6455
  • UART
Related Posts
  • Forum Post: Re: EVM DM642 - urgent help

    TimHarron TimHarron
    Which version of the DM642 EVM do you have? Basically what I am looking for is what type of video decoder your EVM has (either 2x Philips SAA7115 or 1x TI TVP5146). Let me know your email address (feel free to send to me in a private message).
    on Sep 26, 2008
  • Forum Post: Re: EVM DM642 - urgent help

    Bernie Thompson TI Bernie Thompson TI
    Unfortunately I don't think this is posted anywhere publicly, but if you need a copy feel free to contact TI through http://support.ti.com and someone should be able to get it to you (as opposed to everyone who needs it from here on out PMing Tim :) ). If you cannot get it through support.ti.com...
    on Oct 8, 2008
  • Forum Post: Re: Problems on the DDK uart

    TimHarron TimHarron
    Are you using the DM642 Video Port Mini-Driver in addition to the UART driver for the DM642 EVM? There was a problem in the VPMD which overwrites a few registers in the EVM's FPGA which essentially disables the UART. This is a simple fix, so if you are in fact using the VPMD and UART drivers I will...
    on Oct 13, 2008
  • Forum Post: Re: Problems on the DDK uart

    TimHarron TimHarron
    There are four hard register writes into FPGA registers that should be modified. I'll quote the code changes I made. Look for the comments with my initials. static void configSAA7105(SAA7105_Mode videoMode, Bool slaveModeEnable, SAA7105_AnalogFormat outMode, SAA7105_InputFormat inFormat, Bool enableBT656Sync...
    on Oct 15, 2008
  • Forum Post: Re: Image processing on DM642

    Hanief Hanief
    Hi TimHarron, Unfortunately that doesn't seem to work, or do anything different for that matter. I forgot to mention yesterday that the program (both original & modified) runs for only a few seconds. It then halts with the message: s/w breakpoint. Another thing is that, sometimes, when I load...
    on Nov 21, 2008
  • Forum Post: Re: Image processing on DM642

    Bernie Thompson TI Bernie Thompson TI
    As it is crashing like this, it could be that your stack or heap sizes are too small, particularly if you are allocating additional large arrays beyond what the driver is allocating. I would make sure that the arrays you are processing are declared as global so they can be statically allocated, if they...
    on Nov 25, 2008
  • Forum Post: Re: dm642 video capture problem

    Brad Griffis Brad Griffis
    MiaoChen Another question is that my captured frame is always shifting down continuously, do you know what is the reason of this problem? it seems that the data stored in the frame buffer is not a whole frame but a combination of two successive frames, is there anything wrong with the EDMA transfering...
    on Nov 25, 2008
  • Forum Post: Re: Image processing on DM642

    Bernie Thompson TI Bernie Thompson TI
    I am glad to hear that making the arrays global fixed the crashing issue. As to being slow do you mean just the lag as in a delay/latency from the video input to the video output or do you mean that you are dropping frames? In either case it is possible that you are reaching performance limits of the...
    on Nov 25, 2008
  • Forum Post: Re: Image processing on DM642

    Hanief Hanief
    By slow I mean that when I put my hand in front of the camera, there is a 2,3-second delay before it is displayed. And I guess there are also lost frames, as my hand seems to 'magically' appear in front of the camera. I hope I'm not reaching the performance limit of the DM642, this is just...
    on Nov 27, 2008
  • Forum Post: Image processing on DM642

    Hanief Hanief
    Hi all, I'm trying to do some simple image processing using DM642 EVM. Starting from the examples given in the CD, I now have: while(1){/* loop forever */ /* copy data from capture buffer to array to display buffer */ for(i = 0; i < numLines; i++) { DAT_copy(capFrameBuf->frame.iFrm.y1 + i ...
    on Nov 20, 2008
  • Forum Post: Re: Image processing on DM642

    Hanief Hanief
    I'm using the tcf file as supplied, so I don't know if something is fundamentally misconfigured. I haven't made any changes to it, until now that is. Anyway, the only tab configurable in the Global Settings is 641x. I believe the cache is enabled. I tried playing around with the MAR bits...
    on Dec 4, 2008
  • Forum Post: Re: Image processing on DM642

    Hanief Hanief
    environment["ti.bios.oldMemoryNames"] = true; /* loading the generic platform */ var params = {}; params.clockRate = 720.000000; params.deviceName = "DM642"; params.catalogName = "ti.catalog.c6000"; params.regs = {}; params.regs.l2Mode = "4-way cache (0k)";...
    on Dec 12, 2008
  • Forum Post: Program freezes when merging image processing & UART

    Hanief Hanief
    Hi all, I have a program that receives input from a video port, does some processing & sends the output to another video port. This program also produce some numbers based on the processing. I have another program (from DDK 1.20 example) that sends data over the serial port using UART. Separately...
    on May 8, 2009
  • Forum Post: Dilation & Erosion for c6400

    Hanief Hanief
    Hi, Can anyone help me to use the dilation & erosion function in the c6400 IMGLIB? I'm using v1.04b as can be found on the TI website (SPRC094). For example, I have: image_thr(pingPongBufferA, pingPongBufferB, capture_imageCols, capture_imageRows); IMG_dilate_bin(pingPongBufferB, pingPongBufferA...
    on Jul 6, 2009
  • Forum Post: licenced NDK 1.9x.xx and NDK 2.0.0.0.

    adnan khurshid adnan khurshid
    hello all; I am working on TMDXDVP648 board. i have NDK 1.92.00 and NDK 2.0.0.0 versions and bios 5.31.02, 5.31.06 and 5.31.08 versions. currently i am working on NDK 1.92.00 and bios 5.31.08. I have converted its example of network named "helloWorld" to work in ALE_BYPASS mode. By...
    on Aug 27, 2009
  • Forum Post: Video capturing problem with DM642

    Leo Chen14709 Leo Chen14709
    Hi, I'm using the VPORTs of DM642 to capture four NTSC camera video and doing some image processing (like mirroring or rotations) and then output the processed video image to VPORT for display. The video decoder I use is ADV7180. I have a question about the video port configuration. Please refer...
    on Sep 2, 2009
  • Forum Post: warning: expression has no effect

    Hanief Hanief
    Hi, I am trying to fill holes in an object. The theory is if the current pixel is 0 (black), the pixel to the left (previous column) is 1 (white) and the pixel above (previous row) is 1, then the current pixel value should be changed to 1. I implemented that with the following program, but it returns...
    on Sep 11, 2009
  • Forum Post: Problems with NDK on the DM642

    Paul Randall Paul Randall
    Hi, I recently upgraded from Code Composer 2.21 to Code Composer 3.3. At the same time, I upgraded from DSP/BIOS 4.90.270 to DSP/BIOS 5.33.06 and from NDK 1.7.1 to NDK 2.0.0. I also upgraded my code generation tools to 6.1.11. Before the upgrade, I have several DM642 boards which worked great as...
    on Sep 16, 2009
  • Forum Post: trouble with dm642 ddk uart

    Xavier15128 Xavier15128
    Hi,all: This is my first time to use DDK to develop the uart aaplication, as i am not so familiar with mini-driver and class driver, so can anyone give me some suggestions. Thank you! --------------------- another problem is that i see the ddk (uart.pdf ,spru616.pdf),i find the introduction...
    on Oct 15, 2009
  • Forum Post: Problem with DAT_copy in dm642

    Xavier15128 Xavier15128
    hi,all: I see the follow way to use DAT_copy to copy video data in YUV422 formation for(i = 0; i < VideoHeight; i ++) { DAT_copy(capFrameBuf->frame.iFrm.y1 + i * VideoWidth, disFrameBuf->frame.iFrm.y1 + i * VideoWidth, VideoWidth); DAT_copy(capFrameBuf->frame.iFrm...
    on Feb 22, 2010
  • Forum Post: Build a server on DM642, fdSelect() & send() always blocking , never timeout

    hua bin hua bin
    On dm642 platform, use the ndk api to build a server. when the program run to fdSelect() , it was always blocked even the time is out, the last parameter of fdSelect has been as below FD_ZERO(&ibits); FD_SET(slisten, &ibits); timeout.tv_sec = 5; timeout.tv_usec = 0; retValue = fdSelect...
    on Mar 3, 2010
  • Forum Post: DM642 Examples - Monitor in green

    Ed Ortiz Ed Ortiz
    Hello. After include manually the cslDM642.lib file, I can run now the vga.pjt. But the problem I have now is that I watch the monitor all green running vga.pjt (LOOPBACK) or running scaling.pjt. I've checked spra932a and spraa57 but I think I have a misconfiguration or something like that. I...
    on May 27, 2010
  • Forum Post: Re: problem with the versions of DDK

    Loc Loc
    The Driver Development Kit (DDK) is not tied to CCS but more to the version of DSP/ BIOS used. Following are some resources on our wiki that could be useful for you: http://processors.wiki.ti.com/index.php/Software_Migration:_DM642_to_DM648/DM6437 http://processors.wiki.ti.com/index.php/Using_a_PSP_Driver_in_DSP...
    on Jul 7, 2010
  • Forum Post: Re: vedio signal process

    mingjing yu mingjing yu
    thank you very much, i will follow your advice
    on Nov 2, 2010
  • Forum Post: How to resize from d1 to cif in DM642 when using just One field

    RenLiang Fan RenLiang Fan
    hi all, Through " VP_FSETH(vpCaptureHandle, VCACTL, SCALE, VP_VCACTL_SCALE_HALF); "I can get horizontal scale; For vertical scale, i want to get just One field data. Can you tell me how to do it. some link will be helpful Best Regards, Thanks RenLiang Fan
    on Jan 13, 2010
12
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