Reset
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-01 6: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-question- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-01 7: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.Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-02 1:46 AM
ok sorry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-02 4: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.Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-12 3:55 AM
What Actually i wanted is , Interrupt handler (IRQ_Handler) for Reset (NRST -> Pin No 7) in the Board No STM32F103RBT6.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-12 10:39 AM
Like Reset_Handler?
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-13 12:46 AM
Yes, right (Reset_Handler)..
Im trying different methods to find that Reset_Handler, but still not getting .- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-13 1: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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-08-17 3:27 AM
Ok surely i will try , if i got solution i will update clearly ..
Thank You all .