Being a newbie I need help for a program I wrote in e2 studio to find out the area of a circle. But my program goes somewhere in interrupt handler and stays there. What do I need to do so that the program Shows Running in bottom right corner ? ? ? ?
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Program received signal SIGINT, Interrupt.
PowerON_Reset_PC () at E:\Executable\Working\src\/reset_program.c:89
89 void PowerON_Reset_PC(void)
Program received signal SIGTRAP, Trace/breakpoint trap.
PowerON_Reset_PC () at E:\Executable\Working\src\/reset_program.c:89
89 void PowerON_Reset_PC(void)
Breakpoint 2, main () at E:\Executable\Working\src\/Working.c:44
44 _UINT Area_circle = Area(radius);
Breakpoint 5, Area (x=0) at E:\Executable\Working\src\/Working.c:47
47 _UINT Area(_UINT x)
Breakpoint 3, Area (x=<optimized out>) at E:\Executable\Working\src\/Working.c:48
48 {_UINT ans = 3.14 * x * x;
Breakpoint 1, Area (x=<optimized out>) at E:\Executable\Working\src\/Working.c:49
49 return(ans);}
Program received signal SIGTRAP, Trace/breakpoint trap.
Excep_BRK () at E:\Executable\Working\src\/interrupt_handlers.c:53
53 void Excep_BRK(void){ wait(); }