Home
last modified time | relevance | path

Searched refs:tx_s (Results 1 – 6 of 6) sorted by relevance

/babblesim_ext_2G4_phy_v1-3.4.0/src/
Dp2G4_main.c46 if ( tx_el->tx_s.abort.abort_time < tx_el->tx_s.end_tx_time ) { in f_tx_end()
125 static bool tx_and_rx_match(const p2G4_txv2_t *tx_s, rx_status_t *rx_st) in tx_and_rx_match() argument
127 if ((tx_s->radio_params.center_freq == rx_st->rx_s.radio_params.center_freq) && in tx_and_rx_match()
128 (tx_s->radio_params.modulation & P2G4_MOD_SIMILAR_MASK) == in tx_and_rx_match()
131 …bs_time_t chopped_preamble = current_time - tx_s->start_packet_time; /*microseconds of preamble no… in tx_and_rx_match()
139 p2G4_address_t tx_addr = tx_s->phy_address; in tx_and_rx_match()
155 static void find_and_activate_rx(const p2G4_txv2_t *tx_s, uint tx_d) { in find_and_activate_rx() argument
159 tx_and_rx_match(tx_s, rx_s) ) { in find_and_activate_rx()
167 static void tx_start_packet_common(p2G4_txv2_t* tx_s, uint d){ in tx_start_packet_common() argument
170 find_and_activate_rx(tx_s, d); in tx_start_packet_common()
[all …]
Dp2G4_pending_tx_list.c44 void txl_register(uint d, p2G4_txv2_t *tx_s, uint8_t* packet){ in txl_register() argument
46 memcpy(&(tx_list[d].tx_s), tx_s, sizeof(p2G4_txv2_t) ); in txl_register()
Dp2G4_pending_tx_rx_list.h20 p2G4_txv2_t tx_s; member
64 void txl_register(uint d, p2G4_txv2_t *tx_s, uint8_t* packet);
Dp2G4_dump.c354 size_t size = 1024 + tx->tx_s.packet_size*3+1; in dump_txv1()
355 p2G4_txv2_t *txs = &tx->tx_s; in dump_txv1()
372 if ( tx->tx_s.packet_size > 0 ) { in dump_txv1()
373 char packetstr[tx->tx_s.packet_size*3+1]; in dump_txv1()
374 bs_hex_dump(packetstr, tx->packet, tx->tx_s.packet_size); in dump_txv1()
391 size_t size = 1024 + tx->tx_s.packet_size*3+1; in dump_txv2()
392 p2G4_txv2_t *txs = &tx->tx_s; in dump_txv2()
411 if ( tx->tx_s.packet_size > 0 ) { in dump_txv2()
412 char packetstr[tx->tx_s.packet_size*3+1]; in dump_txv2()
413 bs_hex_dump(packetstr, tx->packet, tx->tx_s.packet_size); in dump_txv2()
Dmodem_if.h79 …m_digital_perf_sync(void *this, p2G4_radioparams_t *rx_radioparams, double SNR, p2G4_txv2_t* tx_s);
Dp2G4_channel_and_modem.c59 …(*m_dig_perf_sync_f)(void *m_obj, p2G4_radioparams_t *radio_params, double SNR, p2G4_txv2_t* tx_s);
233 …rec_s->rx_pow[i] = p2G4_power_to_d(tx_l->tx_list[i].tx_s.power_level) - rec_s->att[i] + p2G4_power… in CalculateRxPowerAndISI()
305 …rf_sync[rx_nbr](modem_o[rx_nbr], &rx->radio_params, rec_s->SNR_total, &tx_l->tx_list[tx_nbr].tx_s); in chm_is_packet_synched()