please dont rip this site

Fr. Tom McGahee says

Yes, you can transfer data using a single pin. If you only need one-way communication, then you wire one PIC as the transmitter, and the other PIC as the receiver. You can do this with ANY microcontroller.

The next level of complexity allows a single i/o pin on each PIC to allow TWO-WAY communications between the PICs. This trick can only be done by microcntrollers that have programmable i/o pins.

Here's the basic method:
A single wire connects both PICs (ya gotta have a common ground, of course!) BOTH PICs initially have their i/o pin connected to this line programmed as an INPUT. A 10k pullup resistor connected to +5 ensures that this line will be pulled high whenever both PICs are listening.

OK, eventually one of the PICs has something to say. It first ensures that the other PIC is not talking. Once it is assured of this, it programs its i/o line as an output and sends out a low. The PIC that is still listening will detect this high-to-low- transition (perhaps via an interrupt), and will see it as the beginning of a Start Bit. If you are using standard UART techniques, then the Start Bit will be followed by the usual 8 data bits and a minimum of one stop bit (I prefer two stop bits)..

The receiving PIC places the received data into a register and terminates the interrupt. The receiving PIC can then move, process, or otherwise handle the received byte. It should then set the original receiving register to 0x00. Thus the receiving byte can be tested. If it is 0x00 it means there is no byte received. If there is anything *else* there, then it is valid data, ready to be processed. If 0x00 is not a good value for you to use as an empty marker, then choose some other value, *or* set a software flag to indicate that data is ready, and clear the flag once the data has been moved.

To determine if it is OK to talk it is best to make sure that
(a) the shared line is high, and
(b) that the shared line has *been* high for at least the time it would take to output a complete byte.

I usually accomplish (b) by maintaining a "sticky" counter. At the END of a reception this counter is set to 1 or some other number. Periodically in the program I increment this counter *if* the shared line is still high. Once it rolls over back to 0x00 I *leave* it there. If the PIC wants to send data it checks the value of the counter. If it is not 0x00, then it increments the counter, does a wait for some tens of microseconds, and then loops around and checks the counter again. Eventually the counter will reach 0x00, and the PIC can commence transmission. (note that the interrupt receive routine will pre-set this counter if a reception occurs, so there is no need to check the line itself in the counter wait loop)

The inital number stuffed into the counter at the end of the reception routine should be chosen so that the minimum time before rollover of the counter to 0x00 is greater than the time needed to send a complete byte. You can give one of the PICs a lower priority for transmissions by giving it a longer count interval than the other PIC has.

If you are the adventurous type, then you might decide to make the max wait delay equal to the time it takes to send only a single BIT. I prefer safety to speed most of the time.


file: /Techref/io/onewire.htm, 3KB, , updated: 1999/9/16 09:57, local time: 2024/3/29 08:14,
TOP NEW HELP FIND: 
54.196.114.118:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://piclist.com/techref/io/onewire.htm"> io onewire</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

  PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found
- Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
 

Welcome to piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .