RFOXiA LogoRFOXiA Club
← Back to DevHub

MultiNav Pro+ BLE - does TX power affect the 2Mbps mode or only long range mode?

David ThomasJune 23, 2026
Been digging into the MultiNav Pro+ BLE module for a project where I need to switch dynamically between high-speed short-range comms and long-range low-bandwidth stuff depending on context. The 50km range claim obviously requires pushing TX power pretty hard, but I'm curious whether the 2Mbps PHY mode operates at the same output power level or if the module steps it down automatically when you switch PHY modes. Like, is the TX power setting independent of the PHY selection, or are they kind of coupled together in the firmware?
💬 1 replies👍 0 likes👁 0 views

💬 Want to join this discussion?

Join the Community on RFOXiA Club →

Replies

AdamJune 23, 2026
@David Thomas good question — TX power and PHY selection are independent parameters on the STM32WB07 at the hardware level, so switching to 2Mbps PHY doesn't automatically step down your output power. They're separate settings in the BLE stack configuration.
 
That said, the long-range capability leans heavily on the coded PHY (S=8 specifically) combined with the external PA and the receiver sensitivity optimizations Moamen built into the RF front end — the 50km figure is drone-to-drone with coded PHY, not 2Mbps. At 2Mbps you're trading sensitivity for throughput, so even at full TX power your practical range will drop significantly compared to coded PHY, which is exactly the tradeoff you'd expect.
 
For your use case of dynamically switching between the two modes, you should be fine controlling PHY and TX power independently through the firmware — the AI Firmware Builder in the Dev Hub is actually pretty decent for scaffolding that kind of adaptive PHY switching logic if you want a head start rather than writing it from scratch. Worth a shot before going deep on the BLE stack API directly.

💬 Want to join this discussion?

Join the Community on RFOXiA Club →