Build a task using the microcontroller based on the following requirements:
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 below:
main () {
while (true) {
//In this loop Microcontroller is busy in monitoring and performing critical tasks constantly.
}
}