Tool/software: TI-RTOS
After running gpiointerrupt_EK_TM4C1294XL_TI project, the Task in ROV remains the same values 124 for both stackPeak from entering main to BIOS_start(); even though I add a add1(int x) with a 100 int array function in this program.
1. What happens for ROV? where is add1 go? system stack or task stack? .
2. Where do gpioButtonFxn0(unsigned int index) and gpioButtonFxn1(unsigned int index) go, system stack or task stack? since they are callback during the interrupt
Thanks,
int add1(int x)
{
int array0 [100] = 0;
return ++x;
}