Build a task using a microcontroller that:
Also, consider the following condition
Main Loop Constraint:
The controller is constantly busy executing critical tasks inside the while() loop in the main function, as shown in the code below:
while()
main
main () { while (true) { //In this loop Microcontroller is busy in monitoring and performing critical tasks constantly. } }
Submit Your Solution