⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example_281xflash.gel

📁 dsp f2812 hardware configure source code.It is very help for the beginner of dsp developper.
💻 GEL
字号:
/*
// TI File $Revision: /main/2 $
// Checkin $Date: April 29, 2005   11:22:01 $
//###########################################################################
//
// This .gel file can be used to help load and build the example project.
// It should be unloaded from Code Composer Studio before loading another 
// project since it uses the OnReset() function. 
//
//###########################################################################
// $TI Release:$
// $Release Date:$
//###########################################################################
*/

menuitem "DSP281x Flash Example"

hotmenu Build_Project()
{
  GEL_ProjectLoad("Example_281xFlash.pjt");
  GEL_ProjectBuild("Example_281xFlash.pjt");
}

hotmenu Run_Example()
{
  GEL_ProjectLoad("Example_281xFlash.pjt");
  GEL_Reset();
}

OnReset()
{
   GEL_SymbolLoad(".\\debug\\Example_281xFlash.out");
   GEL_Go(main);
   GEL_WatchReset();
   GEL_WatchAdd("EvaTimer1InterruptCount,x");
   GEL_WatchAdd("EvaTimer2InterruptCount,x");
   GEL_WatchAdd("EvbTimer3InterruptCount,x");
   GEL_WatchAdd("EvbTimer4InterruptCount,x");
   GEL_WatchAdd("LoopCount,x");
}




⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -