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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  ======== sync_mmc_appcfg.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. var tskEcho = tibios.TSK.create("TSK0");
  17. tskEcho.comment = "MMC Test Task";
  18. tskEcho.fxn = prog.extern("initTask");
  19. /*
  20.  * ======== udevMmc ========
  21.  */
  22. var udevMmc = tibios.UDEV.create("udevMmc0");  /* device app uses */
  23. udevMmc.fxnTable = prog.extern("C5509_MMC_FXNS"); /* IOM Fxn table */
  24. udevMmc.initFxn = prog.extern("C5509_MMC_init"); /* IOM init fxn */
  25. udevMmc.fxnTableType = "IOM_Fxns"; /* IOM driver model */
  26. udevMmc.params = prog.extern("C5509_MMC_devParams", "C"); /* app provides */
  27. udevMmc.deviceId = 1;   /* Use MMC 1 peripheral */
  28. /* Driver uses global data */
  29. udevMmc.deviceGlobalDataPtr = prog.extern("C5509_MMC_devObj", "C");
  30. tibios.GIO.ENABLEGIO = 1;
  31. /*
  32.  *  Check if there have been errors and generate the configuration
  33.  *  database file.
  34.  *
  35.  */
  36. if (config.hasReportedError == false) {
  37.     prog.gen();
  38. } else {
  39.     throw new Error( "Error in config script -- database not generated." );
  40. }