example_280xsci_echoback.gel
来自「2812例程以及 控制直流无刷电机程序」· GEL 代码 · 共 44 行
GEL
44 行
/*
// TI File $Revision: /main/1 $
// Checkin $Date: December 3, 2004 14:06:07 $
//###########################################################################
//
// 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: DSP280x V1.10 $
// $Release Date: April 18, 2005 $
//###########################################################################
*/
menuitem "DSP280x SCI Echoback"
hotmenu Load_and_Build_Project()
{
GEL_ProjectLoad("Example_280xSci_Echoback.pjt");
GEL_ProjectBuild("Example_280xSci_Echoback.pjt");
}
hotmenu Load_Code()
{
GEL_Reset();
}
OnReset()
{
GEL_Load(".\\debug\\Example_280xSci_Echoback.out");
}
OnFileLoaded()
{
GEL_Go(code_start);
GEL_WatchReset();
GEL_WatchAdd("LoopCount,x");
GEL_WatchAdd("ErrorCount,x");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?