The main ()
{
While (1)
{
Timer0Init ();
}
}
And
The main ()
{
Timer0Init ();
While (1);
}
What is the difference between the two, please?
CodePudding user response:
First, constantly perform Timer0Init () function,
Second, in performing a Timer0Init (), the program execution while (1) infinite loop,
CodePudding user response:
First, constantly perform Timer0Init () function,
Second, in performing a Timer0Init (), the program execution while (1) infinite loop,
CodePudding user response: