2013-08-01 06:34 AM
Im doing reset in the STM32F103RBT6 board ...
Im updating the data in seven segment display and when i pressed reset switch which was connected to hardware reset , it was hanging up the present data in display and not cleared. Is there any handler for the reset to clear all and bring back to original state when i pressed the reset switch. #poorly-framed-question2013-08-01 07:47 AM
We know nothing about your board, or how the display is configured.
If the display latches data, then you'll need to attach the SAME async reset as you're supplying the processor. Failing that you'll need to add your own code to manually reset/reconfigure the display.2013-08-02 01:46 AM
ok sorry.
2013-08-02 04:12 AM
Don't be sorry.
I was trying to get a better idea of what exactly you had connected, and how you programmed it currently. It's very hard to remotely trouble-shoot problems when the interface isn't clearly defined.2013-08-12 03:55 AM
What Actually i wanted is , Interrupt handler (IRQ_Handler) for Reset (NRST -> Pin No 7) in the Board No STM32F103RBT6.
2013-08-12 10:39 AM
Like Reset_Handler?
2013-08-13 12:46 AM
Yes, right (Reset_Handler)..
Im trying different methods to find that Reset_Handler, but still not getting .2013-08-13 01:55 AM
I dont know what lib you're using but in STDPeriph is: stm32f10x_vector.c where you can find Reset_Handler in .isr_vectors function.
2013-08-17 03:27 AM
Ok surely i will try , if i got solution i will update clearly ..
Thank You all .