projectmanagement.gel
来自「基于DSP2000的例程」· GEL 代码 · 共 26 行
GEL
26 行
// A GEL Function showcasing GELs ability
// to automate common tasks
menuitem "Project Management Tool";
hotmenu Run_Project()
{
// Call standard GEL library function to load project
GEL_ProjectLoad("c:\\source\\HelloDSP.pjt");
// Call standard GEL library function to build project
GEL_ProjectBuild();
// Call standard GEL library function to load the DSP program
GEL_Load("c:\\source\\Debug\\HelloDSP.out");
// Call standard GEL library function to run the project
GEL_Run();
// Indicate that the GEL script is finished
GEL_TextOut("Finished Executing GEL Script!");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?