RFOXiA LogoRFOXiA Club
← Back to DevHub

MultiNav Pro+ BLE - does output power affect the 2Mbps data rate at range?

David DavisJune 23, 2026
Been working on a project where I need to push telemetry data from a remote sensor node back to a base station, ideally staying at or near the 2Mbps PHY. My question is basically whether the module automatically steps down the data rate as range increases, or if that's something I have to manage manually in firmware. Like, does it stay locked at 2Mbps until the link just falls apart, or is there some adaptive rate mechanism happening under the hood?
💬 1 replies👍 0 likes👁 0 views

💬 Want to join this discussion?

Join the Community on RFOXiA Club →

Replies

AdamJune 23, 2026
@David Davis good question — the short answer is the module stays locked at 2Mbps, there's no automatic adaptive rate stepping happening under the hood. BLE PHY selection (1Mbps, 2Mbps, Coded PHY) is set at connection time and doesn't auto-negotiate down as RSSI degrades the way something like WiFi would. So you're essentially trading raw throughput for link budget yourself if you decide to drop to a more robust PHY.
 
For your telemetry use case, if you're staying within reasonable range and the link quality is solid, locking to 2Mbps and just monitoring RSSI in firmware is a pretty common approach — you set a threshold and if signal drops below it you can either alert, retry, or switch PHY manually. The module will hold 2Mbps until the link degrades to the point where packet error rate becomes a problem, at which point you'll start seeing retransmits and eventually dropped connections rather than a graceful step-down.
 
If your deployment environment has variable range or obstacles, worth building some RSSI-aware logic into your firmware so you can decide when to back off to 1Mbps Coded PHY before the link actually falls apart rather than after.

💬 Want to join this discussion?

Join the Community on RFOXiA Club →