CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

PIC RF Transceiver

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
Bob Brady
Guest







PIC RF Transceiver
PostPosted: Tue Jan 14, 2003 9:58 pm     Reply with quote

Can any of you folks recommend a good RF Transceiver for PICs? Or do most of you use a pair of TXLC/RXLC 434s from Rentron?

Thanks in Advance
___________________________
This message was ported from CCS's old forum
Original Post ID: 10707
Bob Brady
Guest







Re: PIC RF Transceiver
PostPosted: Wed Jan 15, 2003 7:47 am     Reply with quote

<font face="Courier New" size=-1>I found my answer in the form of an Abacom AM-RTD-315. Also found an excellent RF Comm Primer using CCS compiler and the PIC 16C77 at

<a href="http://www.ottawarobotics.org/articles/rf/rf_article.pdf" TARGET="_blank">http://www.ottawarobotics.org/articles/rf/rf_article.pdf</a>

Manchester coding is explained and sample code given.





:=Can any of you folks recommend a good RF Transceiver for PICs? Or do most of you use a pair of TXLC/RXLC 434s from Rentron?
:=
:=Thanks in Advance</font>
___________________________
This message was ported from CCS's old forum
Original Post ID: 10716
Eric Minbiole
Guest







Re: PIC RF Transceiver
PostPosted: Wed Jan 15, 2003 10:21 am     Reply with quote

:=Can any of you folks recommend a good RF Transceiver for PICs? Or do most of you use a pair of TXLC/RXLC 434s from Rentron?

Take a look at <a href="http://www.linxtechnologies.com/ldocs/f_prod.html">Linx Technologies</a>. Their SC series transceivers are reasonably priced ($44 digikey) and are very simple to use: just connect them up to the PIC's uart. I've used them on a couple of projects, and they've worked very well.
___________________________
This message was ported from CCS's old forum
Original Post ID: 10721
Richard Slater



Joined: 08 Sep 2003
Posts: 12
Location: Cambridge, UK

View user's profile Send private message Visit poster's website

Re: PIC RF Transceiver
PostPosted: Thu Jan 16, 2003 10:06 am     Reply with quote

:=Can any of you folks recommend a good RF Transceiver for PICs? Or do most of you use a pair of TXLC/RXLC 434s from Rentron?
:=
:=Thanks in Advance

How about the Tx/Rx pair from Maplin, code VY48C. (£9.99 for the pair). Maplin has a selection of other modules, but this is the cheapest.

I've never tried them, but may be doing so soon. (so any feedback would be greatfully received!) They sound pretty easy to use, but there is no real data on them, until you buy them!

Richard
___________________________
This message was ported from CCS's old forum
Original Post ID: 10737
R.J.Hamlett
Guest







Re: PIC RF Transceiver
PostPosted: Thu Jan 16, 2003 3:47 pm     Reply with quote

:=:=Can any of you folks recommend a good RF Transceiver for PICs? Or do most of you use a pair of TXLC/RXLC 434s from Rentron?
:=:=
:=:=Thanks in Advance
:=
:=How about the Tx/Rx pair from Maplin, code VY48C. (£9.99 for the pair). Maplin has a selection of other modules, but this is the cheapest.
:=
:=I've never tried them, but may be doing so soon. (so any feedback would be greatfully received!) They sound pretty easy to use, but there is no real data on them, until you buy them!
:=
Most of these modules are pretty similar. There is a semi 'standard' for the pinouts on several ranges. I have used several ones from about three different manufacturers with the PIC, including versions at 433MHz, and the higher 915MHz version. All are pretty easy, accepting 'logic' serial, at various rates (some are only rated for 1200bps, while some go much higher). There are obvious 'design constraints', such as the need for care to provide good smoothing on the supply, to prevent RF noise from getting back into other parts of the circuit (in general I was using 'loop' antennae formed directly on the PCB, which makes this worse), and (conversely), to prevent noise from the PIC, reducing the sensitivity of the units.
Details of the modules are available from:
<a href="http://www.rfsolutions.co.uk/products/rf_modules/rf_modules.htm" TARGET="_blank">http://www.rfsolutions.co.uk/products/rf_modules/rf_modules.htm</a>
Where datasheets are available, which makes design a lot easier. The more expensive modules give better noise immunity and range.
Generally, you will have to design a self correcting transmission code (it is preferable to reduce the need to retransmit, since the 'turn round' is often quite slow).
I used a small 'packet', that was coded with a 12,8 hamming code, followed by a CRC, and then duplicated with all bits inverted. This gave very reliable transmission, but at the cost of sending an average of 25.5 bits for every byte required (using a 32byte packet).

Best Wishes
___________________________
This message was ported from CCS's old forum
Original Post ID: 10740
Jon Fick
Guest







Re: PIC RF Transceiver
PostPosted: Mon Jan 20, 2003 7:11 am     Reply with quote

You wrote
:=I used a small 'packet', that was coded with a 12,8 hamming code, followed by a CRC, and then duplicated with all bits inverted. This gave very reliable transmission, but at the cost of sending an average of 25.5 bits for every byte required (using a 32byte packet).
:=

I once worked on a lighting control system using a 900MHz Linx Tx/Rx pair where the protocol was simplex. (The only feedback mechanism to see if the transmission was successful was a pair of binoculars!) Thus, I needed to ensure that the transmission wasn't stepped on, garbled, etc, and the best way to do that seemed to be to establish some sort of error correcting protocol combined with redundant transmissions. I implemented the Hamming code but quickly found what others already knew... that the Hamming code was really intended for memory bus correction where a single-bit error was conceivable, rather than for the burst errors (several contiguous bits at once) common to RF transmission.

If you get a chance, I'd be interested to know a bit more about your Hamming code and experience, even offline.

Thanks.

Jon Fick
___________________________
This message was ported from CCS's old forum
Original Post ID: 10817
ndineshraj



Joined: 05 Jul 2011
Posts: 1

View user's profile Send private message

Re: PIC RF Transceiver
PostPosted: Tue Jul 05, 2011 6:37 am     Reply with quote

Sir could please help the logic of your coding of hamming and crc which would be very useful for me as am struggling too much to get it done........
Please reply as soon as possible.......

it would be very helpful in my life time.............

R.J.Hamlett wrote:

I used a small 'packet', that was coded with a 12,8 hamming code, followed by a CRC, and then duplicated with all bits inverted. This gave very reliable transmission, but at the cost of sending an average of 25.5 bits for every byte required (using a 32byte packet).

Best Wishes
rnielsen



Joined: 23 Sep 2003
Posts: 852
Location: Utah

View user's profile Send private message

PostPosted: Tue Jul 05, 2011 9:55 am     Reply with quote

The original post on this thread was way back in 2003. Try finding one that's recent. I think you'll have a better chance at getting a response.

Ronald
bkamen



Joined: 07 Jan 2004
Posts: 1611
Location: Central Illinois, USA

View user's profile Send private message

PostPosted: Wed Jul 06, 2011 9:32 am     Reply with quote

I recently implemented the MRF49XA from Microchip.


It wasn't too bad -- and it's interesting because it has lots of options that you can use or not.

A single chip can operate at either 433MHz or 915MHz (or 868 MHz)

They are $3 in single qty's from Digikey.


So if you're planning on building a LOT of something, these are pretty decent.

There's application libraries to help look at others source -- and the datasheet's not too shabby. (I haven't run into anything that makes me ask, "why is this in the datasheet!?!?" yet...)

Just thought I'd toss that one out here.

-Ben
_________________
Dazed and confused? I don't think so. Just "plain lost" will do. :D
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group