Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[PIC] Micro-controller to Micro-controller communication

Status
Not open for further replies.

bhoobalan

Member level 1
Joined
Dec 28, 2013
Messages
35
Helped
1
Reputation
2
Reaction score
1
Trophy points
8
Activity points
280
Hello Friends,
I have 3 questions and i listed it below

1) Which kind of communication is best to connect two micro-controllers?

2) If it is possible to connect two micro-controllers in different bits(For example 8 bit & 16 bit or 16 bit &32 bit like that) ?

3) I want to connect PIC32MX795F512L USB 2 STARTER KIT and PIC32MX360F512L STATER KIT.
It is possible to connect two starter kit's are not?

Thanks in advance

I am waiting for your reply
 

1. It depends on how far apart they are and how fast you need to transfer data. Over short distances (<10cm) a parallel bus is fastest because it can transfer a whole byte at a time. Over longer distances it is more practical to use a serial system which transfers on ebit at a time so is slower but uses less wiring.

2. Yes, but if you want to send say 32 bits to an 8-bit device you have to split it into four 8-bit sections and send them individually. You can only transfer as much in one step as the smaller processor can manage.

3. USB requires a host system. If one is a host (I do not have the data sheets here to check) yes you can do it. You cannot connect two USB slave (client) devices directly together.

Brian.
 

I guess its best answered above by betwixt..

Just to add to it , I would say if speed isn't a big issue go for serial communication.
 

there are some protocols like I2C,SPI etc. try to use that to communicate if the distance is less. if its larger distances then its better to use modbus protocol through rs485
 

there are number of alternatives
1. UART to UART is probably the simplest and you can use hardware flow control if required
2. I2C or SPI if the devices are close to each other
3. USB - make one PIC32 USB host and the second USB device
4. wired Ethernet or wireless for distances over 10 metres
**broken link removed**
 

i think UART communication will be best if these are the free for that.Bcoz no need to consider master and slave.If they are engaged then u have to go for I2C, SPI or parellel port communiaction.
 

i think UART communication will be best if these are the free for that.Bcoz no need to consider master and slave.If they are engaged then u have to go for I2C, SPI or parellel port communiaction.
the PIC32MX795F512L and PIC32MX360F512L have a Parallel Master Port for parallel communication - one also could use DMA for high speed transfers
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top