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

multiprocessor communication

did any body had tried to transfer data from one c51 <master> to another c51 <slave> by use of serial port

i am trying to work this thing but i fails some how. if any one can provide me some code for reference to this problem...

Parents
  • The processor does not know what hardware there is on the other side of the cable. It may be another C51 or a PC or just about anything else that sends asynchronous data with the correct timing and voltage levels.

    You need general serial communication code as available in thousands of examples out on the net and also available among the examples that follows the Keil compiler.

    Then it is up to you to write the upper layer, i.e. the part that decides what to send, and the part that processes received data and possibly sends back an acknowledge.

Reply
  • The processor does not know what hardware there is on the other side of the cable. It may be another C51 or a PC or just about anything else that sends asynchronous data with the correct timing and voltage levels.

    You need general serial communication code as available in thousands of examples out on the net and also available among the examples that follows the Keil compiler.

    Then it is up to you to write the upper layer, i.e. the part that decides what to send, and the part that processes received data and possibly sends back an acknowledge.

Children