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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  ======== async_mmccfg.tcf ========
  3.  *  This file is used for textual configuration of DSP/BIOS as an alternative
  4.  *  or in addition to the traditional graphical configuration tool (GCONF).
  5.  *  For more information on textual configuration and the TCONF utility,
  6.  *  please refer to the DSP/BIOS TextConf User's Guide (SPRU007).
  7.  */
  8. /*
  9.  *  Load the Platform file for the appropriate board
  10.  */
  11. utils.loadPlatform("Evm5509");
  12. /*
  13.  *  Import EVM5509-specific parameters needed by the DDK examples.
  14.  */
  15. utils.importFile("Evm5509_ddk.tci");
  16. /*
  17.  * ======== udevMmc ========
  18.  */
  19. var udevMmc = tibios.UDEV.create("udevMmc0");  /* device app uses */
  20. udevMmc.fxnTable = prog.extern("C5509_MMC_FXNS"); /* IOM Fxn table */
  21. udevMmc.initFxn = prog.extern("C5509_MMC_init"); /* IOM init fxn */
  22. udevMmc.fxnTableType = "IOM_Fxns"; /* IOM driver model */
  23. udevMmc.params = prog.extern("C5509_MMC_devParams", "C"); /* app provides */
  24. udevMmc.deviceId = 1;   /* Use MMC 1 peripheral */
  25. /* Driver uses global data */
  26. udevMmc.deviceGlobalDataPtr = prog.extern("C5509_MMC_devObj", "C");
  27. tibios.GIO.ENABLEGIO = 1;
  28. /*
  29.  *  Check if there have been errors and generate the configuration
  30.  *  database file.
  31.  *
  32.  */
  33. if (config.hasReportedError == false) {
  34.     prog.gen();
  35. } else {
  36.     throw new Error( "Error in config script -- database not generated." );
  37. }