38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
|
/*
|
||
|
// TI File $Revision: /main/1 $
|
||
|
// Checkin $Date: August 29, 2007 14:08: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.
|
||
|
//
|
||
|
//###########################################################################
|
||
|
// $TI Release: DSP2833x/DSP2823x Header Files V1.20 $
|
||
|
// $Release Date: August 1, 2008 $
|
||
|
//###########################################################################
|
||
|
*/
|
||
|
|
||
|
menuitem "DSP28335 XINTF Run Example"
|
||
|
|
||
|
hotmenu Load_and_Build_Project()
|
||
|
{
|
||
|
GEL_ProjectLoad("Example_2833xCodeRunFromXintf.pjt");
|
||
|
GEL_ProjectBuild("Example_2833xCodeRunFromXintf.pjt");
|
||
|
Setup_WatchWindow();
|
||
|
}
|
||
|
|
||
|
hotmenu Load_Code()
|
||
|
{
|
||
|
GEL_Load(".\\debug\\Example_2833xCodeRunFromXintf.out");
|
||
|
Setup_WatchWindow();
|
||
|
}
|
||
|
|
||
|
hotmenu Setup_WatchWindow()
|
||
|
{
|
||
|
GEL_WatchReset();
|
||
|
GEL_WatchAdd("CpuTimer0.InterruptCount",,"CPU ISR Count");
|
||
|
GEL_WatchAdd("CpuTimer1.InterruptCount",,"CPU ISR Count");
|
||
|
GEL_WatchAdd("CpuTimer2.InterruptCount",,"CPU ISR Count");
|
||
|
}
|