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

distance between two nrf52832

hello 

i am using two customised nrf52832 and trying to get the maximum distance between two boards people suggested me this example https://github.com/NordicPlayground/nRF52-ble-long-range-demo but i found that nrf52832 supports only 4 dbm so i cant use this example as this example specified for nrf52840 my question

1)what is the maximum distance achievable between nrf52832

2)is there any example for this?

thanks and regards

manikandan v

Parents
  • Hi, 

    The long range mode is not supported in the nRF52832, only in the nRF52840. You can refer to this post for the distance although it's for nRF52840. 

    -Amanda H.

  • thanks for your reply amanda as i am using two nrf52832 devices i could not use that link  what i am doing now is flashing ble_app_uart_c in one board and ble_app_uart in other and i can sucessly establish a connection between two boards and iam 

      advertising_start();
         uint32_t err_code = sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_ADV, m_advertising.adv_handle, 4);
    
    using this function to increase the tx power my question is 

    1)do i have to include this function both in central and peripheral??

    2)and where can i get the rssi values between the devices in central or peripheral??

    3)which function i can use to get the rssi values between the devices

    what i am trying to do is get the rssi value and print it in console how can i achieve this

    thanks and regards 

    manikandan v

Reply
  • thanks for your reply amanda as i am using two nrf52832 devices i could not use that link  what i am doing now is flashing ble_app_uart_c in one board and ble_app_uart in other and i can sucessly establish a connection between two boards and iam 

      advertising_start();
         uint32_t err_code = sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_ADV, m_advertising.adv_handle, 4);
    
    using this function to increase the tx power my question is 

    1)do i have to include this function both in central and peripheral??

    2)and where can i get the rssi values between the devices in central or peripheral??

    3)which function i can use to get the rssi values between the devices

    what i am trying to do is get the rssi value and print it in console how can i achieve this

    thanks and regards 

    manikandan v

Children
Related