tsk_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.  *  ======== tsk_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 = "Dsk5402";
  19. /*
  20.  *  Load the Platform file for the appropriate board
  21.  */
  22. utils.loadPlatform(platformName);
  23. /*
  24.  *  Define all the hardware-independent software threads.
  25.  */
  26. utils.importFile("tsk_audio.tci");
  27. /*
  28.  *  Check if there have been errors and generate the configuration
  29.  *  database file.
  30.  *
  31.  */
  32. if (config.hasReportedError == false) {
  33.     prog.gen();
  34. } else {
  35.     throw new Error( "Error in config script -- database not generated." );
  36. }