This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Rtx51 on at89c51

Hi

can we use the rtos provided with Keil in at89c51/s51/s52.
Bcoz ive got no other option regarding the controller.
if yes, where can i find a detailed guide to use the same.
its needed for a analog joystick kind of a function.
Please help.

Ashok

Parents
  • Have you walked through all the examples on this site?

    You only need an RTOS if your teacher have put a requirement that the project must use an RTOS - that kind of project is easy to do with just interrupt handlers and a main loop.

    Interrupts can handle communication.
    Interrupts can handle reading of your sensor (that joystick or whatever you use).

    Main loop just make the decisions based on input stimuli and order what output stimuli to apply.

Reply
  • Have you walked through all the examples on this site?

    You only need an RTOS if your teacher have put a requirement that the project must use an RTOS - that kind of project is easy to do with just interrupt handlers and a main loop.

    Interrupts can handle communication.
    Interrupts can handle reading of your sensor (that joystick or whatever you use).

    Main loop just make the decisions based on input stimuli and order what output stimuli to apply.

Children