LowPowerLab Forum

Hardware support => Moteino => Topic started by: jgilbert on November 02, 2014, 11:20:12 PM

Title: Mixing RFM69W with RFM69HW
Post by: jgilbert on November 02, 2014, 11:20:12 PM
Moteino users --

I have a fleet of about 8 nodes running 433mhrz RFM69Ws in a 3 story townhouse and am noticing that the nodes two floors up from the gateway are very inconsistent, and sometimes go hours without getting a packet through. I was wondering if its possible to mix the 69W and the 69HW in the same network. Surprisingly I cannot find a single confirmation of anyone actually doing this although folks have said it is theoretically possible.

My plan would be to replace the gateway and the upstairs nodes with the 69HW and leave everything else the same (e.g. the 69W nodes would remain on the network.) Any advice?

Another option is to create a separate 915mHz network. I can't really find anything definitive if 915 is better range/lower interference indoors. I live in a fairly dense residential area (Cambridge MA) so plenty of interference here.  Would I be better off with the 915 mHz?

My average receive RSSIs are between -84 - -90, varying day by day (have been logging this for several million packets since last week.)

Thanks,

Jeremy



Title: Re: Mixing RFM69W with RFM69HW
Post by: Felix on November 03, 2014, 07:20:59 AM
Of course you can. They are the exact same semtech chip, except one is implemented with a PA_boost (HW) on the PCB, one is not (W). You will only need to load the right settings in the sketch so that the registers are setup correctly.
You are probably not setting it right or missing some small detail. But all sketches have all the necessary settings, some may be commented out. You need to be careful with the IS_HW setting. That only needs to be enabled for HW radios.
A -84-90 dBm RSSI is pretty good for so much structure in between.
The 868-915mhz is what I recommend to most people that start out. It is very good for indoors and outdoors. Interference can be a problem but I would not expect much at 433mhz.
Title: Re: Mixing RFM69W with RFM69HW
Post by: juan3211 on May 15, 2018, 06:20:13 AM
Hi, sorry for opening again this post, but I think that it is the good one for me to ask, as the subject is exactly my question.

I have bought several RFM69W and RFM69HW.

I know, that if they have the same frecuency, they can be mixed.

But what about the better option to work them as RX/gateway or TX/node ?

Two examples:

Hope your answer and thanks a lot.
Title: Re: Mixing RFM69W with RFM69HW
Post by: TomWS on May 15, 2018, 08:34:42 AM
If your communications protocol is two way, ie, sendWithRetry() which requires at least an ACK from the far end, then your range will be limited by the weakest radio in the link.  So, in general:

Gateways would be HW since they have to reach the farthest node in your network.
Nodes can be W if they are close to the gateway, but should be HW if they are the farthest nodes and required by range.

If your duty cycle is low at each node, then, in general, your battery life is not significantly affected by using an HW and this is a safe design choice in most cases.  Using ATC to dial back power to a reliable value makes this practical.  The exception is if you are powered by a very weak battery, such as a coin cell.  I would never use an HW radio with a coin cell unless a very large cap was in the circuit to handle the current surge.

Tom
Title: Re: Mixing RFM69W with RFM69HW
Post by: juan3211 on May 22, 2018, 06:22:45 AM
Quote from: TomWS on May 15, 2018, 08:34:42 AM
If your communications protocol is two way, ie, sendWithRetry() which requires at least an ACK from the far end, then your range will be limited by the weakest radio in the link.  So, in general:

Gateways would be HW since they have to reach the farthest node in your network.
Nodes can be W if they are close to the gateway, but should be HW if they are the farthest nodes and required by range.

If your duty cycle is low at each node, then, in general, your battery life is not significantly affected by using an HW and this is a safe design choice in most cases.  Using ATC to dial back power to a reliable value makes this practical.  The exception is if you are powered by a very weak battery, such as a coin cell.  I would never use an HW radio with a coin cell unless a very large cap was in the circuit to handle the current surge.

Tom

Thanks a lot @TomWS.

Sorry about delay, but I have to check my settings as I don't recieve any suscription email.

My feelings were as you says, but I need to confirm them. Thanks a lot.

I understand that HW can surge up to 130-150mA.

Regars,
Title: Re: Mixing RFM69W with RFM69HW
Post by: TomWS on May 22, 2018, 08:50:53 AM
Quote from: juan3211 on May 22, 2018, 06:22:45 AM
I understand that HW can surge up to 130-150mA.
This 'surge' only occurs when you are transmitting at full power and only lasts as long as the transmit time (a few 10s of Milliseconds), which is why duty cycle matters.  If you're only transmitting once every 10 minutes, then the duty cycle is ~20ms tx/600000ms cycle time for an average TX power of ~5uA (plus quiescent/sleeping current).

Tom
Title: Re: Mixing RFM69W with RFM69HW
Post by: juan3211 on May 22, 2018, 06:01:28 PM
Quote from: TomWS on May 22, 2018, 08:50:53 AM
This 'surge' only occurs when you are transmitting at full power and only lasts as long as the transmit time (a few 10s of Milliseconds), which is why duty cycle matters.  If you're only transmitting once every 10 minutes, then the duty cycle is ~20ms tx/600000ms cycle time for an average TX power of ~5uA (plus quiescent/sleeping current).

Tom

Yes, I know. I was talking about what you say about coin cells.

Thanks a lot for your help.

I am a bit upset about NRF24 and its inestability and/or poor range, so I want to check RFM69.  Thanks a lot again