Home
last modified time | relevance | path

Searched refs:cca_req (Results 1 – 4 of 4) sorted by relevance

/nrf_hw_models-3.7.0/src/HW_models/
DNHW_RADIO_utils.c544 void nhwra_prep_cca_request(p2G4_cca_t *cca_req, bool CCA_not_ED, double rx_pow_offset) { in nhwra_prep_cca_request() argument
546 cca_req->start_time = hwll_phy_time_from_dev(nsi_hws_get_time()); //We start right now in nhwra_prep_cca_request()
547 cca_req->antenna_gain = 0; in nhwra_prep_cca_request()
552 cca_req->radio_params.center_freq = center_freq; in nhwra_prep_cca_request()
555 cca_req->radio_params.modulation = P2G4_MOD_154_250K_DSS; in nhwra_prep_cca_request()
576 cca_req->scan_duration = one_scan_duration; in nhwra_prep_cca_request()
577cca_req->scan_period = cca_req->scan_duration/4; //let's measure 4 times (model design choice) in nhwra_prep_cca_request()
580 cca_req->rssi_threshold = p2G4_RSSI_value_from_dBm(edthreshold_dBm); in nhwra_prep_cca_request()
581 cca_req->mod_threshold = p2G4_RSSI_value_from_dBm(100/*dBm*/); //not used in nhwra_prep_cca_request()
582 cca_req->stop_when_found = 0; in nhwra_prep_cca_request()
[all …]
DNHW_RADIO_utils.h26 void nhwra_prep_cca_request(p2G4_cca_t *cca_req, bool CCA_not_ED, double rx_pow_offset);
DNHW_RADIO_priv.h72 p2G4_cca_t cca_req; member
DNHW_RADIO.c1408 p2G4_abort_t *abort = &cca_status.cca_req.abort; in CCA_abort_eval_respond()
1428 nhwra_prep_cca_request(&cca_status.cca_req, CCA_not_ED, cheat_rx_power_offset); in start_CCA_ED()
1430 update_abort_struct(&cca_status.cca_req.abort, &next_recheck_time); in start_CCA_ED()
1433 cca_status.CCA_end_time = nsi_hws_get_time() + cca_status.cca_req.scan_duration; in start_CCA_ED()
1437 int ret = p2G4_dev_req_cca_nc_b(&cca_status.cca_req, &cca_status.cca_resp); in start_CCA_ED()