- This topic has 2 replies, 3 voices, and was last updated 10 years, 1 month ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
|
Microcontroller › 8051 › How to do Soft Reset for 8051
Hi Guys ….! Good to be Here ….
Can any plaese suggest me……….
How to Soft Reset the 8051 Microcontroller using Embedded C-Programming ..?
Waiting for ur replies ……
You have to study about the watchdog timer.
Using following code you can reset 8051 by software.
void reset (void)
{
((void (code *) (void)) 0x0000) ();
}
void main (void)
{
reset ();
}