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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  This file is used for textual configuration of DSP/BIOS as an alternative
  3.  *  or in addition to the traditional graphical configuration tool (GCONF).
  4.  *  For more information on textual configuration and the TCONF utility,
  5.  *  please refer to the DSP/BIOS TextConf User's Guide (SPRU007).
  6.  */
  7. /*
  8.  *  ======== pip_audiocfg.tcf ========
  9.  *
  10.  *  TCF file from which the configuration database is generated.
  11.  *  It includes individual (TCI) modules in charge of different
  12.  *  sections of the configuration.
  13.  */
  14. /*
  15.  *  Define/Set a platformName variable to be used in the application
  16.  *  configuration
  17.  */
  18. var platformName = "Dsk5416"
  19. /*
  20.  *  Load the Platform file for the appropriate board
  21.  */
  22. utils.loadPlatform(platformName);
  23. /*
  24.  *  Now load the TCI file that defines all the software threads.
  25.  *  This file and all the remaining ones should be hardware-independent.
  26.  */
  27. utils.importFile("pip_audio.tci");
  28. /*
  29.  *  Check if there have been errors and generate the configuration
  30.  *  database file.
  31.  */
  32. if (config.hasReportedError == false) {
  33.     prog.gen();
  34. } else {
  35.     throw new Error( "Error in config script -- database not generated." );
  36. }