Tool/software: Code Composer Studio
Hi,
I am using TM4C129ENCPDT with code composer studio.
I have a requirement like I need to monitor the reset button of the board programmatically. Is it possible?
There is a Reset ISR in startup_ccs.c file. I tried adding UARTprintf statements inside that ISR assuming it works in bootup or when I press the reset button. It didn't happen since all the UART configuration are done in the main which will execute after Reset ISR.
I need to monitor the press and release of the reset button and time interval between the press and release and do the decision making accordingly.
Thank you for your time.