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

📄 projectmanagement.gel

📁 基于DSP2000的例程
💻 GEL
字号:

// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -