This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to modify tx power in mesh-sdk-4.0 LPN example

Hi Nordic

I want to change mesh-sdk-4.0 LPN example tx output power to 4dbm, including proxy broadcast, mesh packet, 

I try to change "RADIO_POWER_NRF_0DBM" in whole mesh-sdk-4.0 to "RADIO_POWER_NRF_POS4DBM", 

in set_default_broadcast_configuration(), scanner_init(), core_tx_tx_power_delete(), core_tx_lpn_init()

But it seems not change the tx power because nrf connect APP still show similar RSSI, could you tell me how to modify tx power of mesh-sdk-4.0?

Regards,

Joseph

Parents
  • Hi Joseph, 

    When you mentioned the RSSI showed on nRFConnect app, I assume it's when the device was not provisioned and advertising in PBGATT mode. 

    To change TX power when the device doing BLE advertising for provisioning, you would need to call sd_ble_gap_tx_power_set() after you init the BLE stack (ble_stack_init() ) 

    Note that this function wouldn't affect when the device doing normal mesh activity. For that you would need to call advertiser_tx_power_set()

    I would suggest to start testing on a normal mesh node instead of LPN node. 

Reply
  • Hi Joseph, 

    When you mentioned the RSSI showed on nRFConnect app, I assume it's when the device was not provisioned and advertising in PBGATT mode. 

    To change TX power when the device doing BLE advertising for provisioning, you would need to call sd_ble_gap_tx_power_set() after you init the BLE stack (ble_stack_init() ) 

    Note that this function wouldn't affect when the device doing normal mesh activity. For that you would need to call advertiser_tx_power_set()

    I would suggest to start testing on a normal mesh node instead of LPN node. 

Children
Related