I can't seem to get a GEL slider to work in CCS v4.1.2.00027 with OMAP L137 EVM.
With program
#include <stdio.h>
void main(void)
{
int gain=10;
printf("testing L137\n");
while (gain < 20);
printf("finished\n");
}
loaded in debugger, and GEL file
menuitem "gain slider"
slider gain(0,30,1,1,gain_param)
{
gain = gain_param;
}
loaded and running, if I move the slider before running the program I can see the value of the variable changing appropriately
(in the local watch window, and by hovering the cursor over the variable name in the source file)
but if I run the program, it doesn't seem to respond to moving the slider.
A similar program/GEL file seems to work in CCS v3.3.
What am I missing?
Donald