RFOXiA LogoRFOXiA Club
← Back to DevHub

MultiNav Pro+ BLE - any experience with TX power stepping between zones?

Keith BryantJuly 14, 2026
Working on a project where I have a central gateway and a bunch of remote nodes spread across a pretty large area - some nodes are close, maybe 100-200m, others are way out at the edge of range. I'm trying to figure out if there's a reasonable way to dynamically step the TX power down on nodes that are close to the gateway instead of just blasting everything at max all the time. Feels wasteful and I'm also a little worried about interference between nodes if they're all screaming at full power.
 
Does anyone have experience doing adaptive TX control with the MultiNav Pro+ BLE? Like is there a clean way to read RSSI on incoming packets and feed that back to adjust the remote node's output, or are most people just setting a fixed power level and calling it a day? I'm using the BLE link for both telemetry and occasional config pushes so I don't want to step the power down so aggressively that I lose reliability for the config side of things.
 
Also wondering if there's any interaction with the RF front-end to be aware of when you're switching power levels mid-connection. On some modules I've used before there's a brief glitch or the front-end needs a small settling time after a TX power change and it causes a dropped packet or two. Might be a non-issue here but figured I'd ask before I go down that rabbit hole myself. Any pointers appreciated.
💬 1 replies👍 0 likes👁 0 views

💬 Want to join this discussion?

Join the Community on RFOXiA Club →

Replies

AdamJuly 14, 2026
@Keith Bryant yeah this is a solid approach and definitely worth doing rather than just pinning everything to max — you're right that it's wasteful and the co-channel interference gets real when you have a dense node cluster all transmitting at full power simultaneously.
 
On the RSSI feedback loop: the STM32WB07 gives you RSSI per connection event, so the cleanest way to handle this is to have the gateway read RSSI on incoming packets and then push a power adjustment command back to the remote node over your existing config channel. You're already doing config pushes so you basically have the mechanism for free — just add a power step command to your protocol and let the gateway drive it. I'd suggest treating it as a slow control loop, not a fast one. Sample RSSI over maybe 10-20 packets, take an average, and only step if you're consistently well above your target margin. Chasing every RSSI fluctuation just creates instability.
 
For the front-end settling question — with the external PA architecture on the MultiNav Pro+ there is a small window after a TX power change where you can get inconsistent output. It's not dramatic but it's real. The safe move is to avoid changing TX power mid-burst; do it between packet exchanges rather than while you're actively streaming telemetry. If you build in even a modest inter-packet gap around the power transition you should be fine. A couple of dropped packets during the step is annoying but not catastrophic if your telemetry has any kind of sequence numbering or retry logic.
 
The GitHub repo has the STM32WB07 firmware source so it's worth digging into how TX power is being set there before you build your control layer on top of it — link's at github.com/RFOXiA/MultiNav-Pro-Long-Range-BLE-Module-Firmware-STM32WB07. Might save you some reverse-engineering time on the exact register sequence.

💬 Want to join this discussion?

Join the Community on RFOXiA Club →