Skip to content

Commit fc8dd6d

Browse files
jhirsirlubos
authored andcommitted
samples: dect_phy: dect_shell: mac: beacon RX to use exp rssi from sett
Beacon RX for announced RA resource to use the expected RSSI value from the settings. This way it is possible to eliminate possible PCC errors for very low RSSI values. Signed-off-by: Jani Hirsimäki <[email protected]>
1 parent e88c285 commit fc8dd6d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

samples/dect/dect_phy/dect_shell/src/dect/mac/dect_phy_mac_cluster_beacon.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,8 @@ int dect_phy_mac_cluster_beacon_tx_start(struct dect_phy_mac_beacon_start_params
437437
rach_list_item_conf->length_subslots = 0;
438438

439439
rach_list_item_conf->rx.mode = NRF_MODEM_DECT_PHY_RX_MODE_CONTINUOUS;
440-
rach_list_item_conf->rx.expected_rssi_level = 0;
440+
rach_list_item_conf->rx.expected_rssi_level =
441+
current_settings->rx.expected_rssi_level;
441442
rach_list_item_conf->rx.duration =
442443
0; /* length_slots used instead duration variable */
443444
rach_list_item_conf->rx.network_id = current_settings->common.network_id;

0 commit comments

Comments
 (0)