Example_281xFlash.gel
上传用户:qingfan3
上传日期:2014-10-27
资源大小:31439k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. menuitem "DSP281x Flash Example"
  2. hotmenu Build_Project()
  3. {
  4.   GEL_ProjectLoad("Example_281xFlash.pjt");
  5.   GEL_ProjectBuild("Example_281xFlash.pjt");
  6. }
  7. hotmenu Run_Example()
  8. {
  9.   GEL_ProjectLoad("Example_281xFlash.pjt");
  10.   GEL_Reset();
  11. }
  12. OnReset()
  13. {
  14.    GEL_SymbolLoad(".\debug\Example_281xFlash.out");
  15.    GEL_Go(main);
  16.    GEL_WatchReset();
  17.    GEL_WatchAdd("EvaTimer1InterruptCount,x");
  18.    GEL_WatchAdd("EvaTimer2InterruptCount,x");
  19.    GEL_WatchAdd("EvbTimer3InterruptCount,x");
  20.    GEL_WatchAdd("EvbTimer4InterruptCount,x");
  21.    GEL_WatchAdd("LoopCount,x");
  22. }