TMS320C2812全套例程
源代码在线查看: example_28xflash.gel
menuitem "DSP28 Flash Example"
hotmenu Build_Project()
{
Instructions();
GEL_ProjectLoad("Example_28xFlash.pjt");
GEL_ProjectBuild("Example_28xFlash.pjt");
}
hotmenu Run_Example()
{
GEL_Reset();
}
OnReset()
{
GEL_SymbolLoad(".\\debug\\Example_28xFlash.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");
}