build-led.tcf
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  ======== build-led.tcf ========
  3.  *
  4.  *! Revision History
  5.  *! ================
  6.  *! 27-Jun-2003 mw Created.
  7.  *
  8.  * To create led.cdb:
  9.  *
  10.  * 1)  Open a Windows command prompt window and cd to the root of your Code
  11.  *     Composer installation directory (normally c:ti).  Type dosrun in the
  12.  *     command prompt window to execute dosrun.bat which adds the Code
  13.  *     Composer command line utilities to your automatic search path.
  14.  *
  15.  * 2)  Modify the prog.load statement below to reflect the location of your
  16.  *     Code Composer installation directory if it is not in c:ti.
  17.  *
  18.  * 3)  Execute the following command in your command prompt window:
  19.  *
  20.  *     tconf build-led.tcf
  21.  */
  22. /* Load DM642 CDB seed file */
  23. prog.load("c:/ti/c6000/bios/include/dm642.cdb");
  24. /* Get program objects */
  25. utils.getProgObjs(prog);
  26. /* Disable Task Manager */
  27. TSK.ENABLETSK = 0;
  28. /* Disable memory heaps */
  29. MEM.NOMEMORYHEAPS = 1;
  30. /* Generate .cdb file */
  31. prog.gen("led");