Searched refs:packet (Results 1 – 8 of 8) sorted by relevance
| /babblesim_ext_2G4_phy_v1-latest/src/ |
| D | p2G4_pending_tx_list.c | 31 if ( tx_list[d].packet != NULL ) { in txl_free() 32 free(tx_list[d].packet); in txl_free() 44 void txl_register(uint d, p2G4_txv2_t *tx_s, uint8_t* packet){ in txl_register() argument 47 tx_list[d].packet = packet; in txl_register() 81 if (tx_list[d].packet != NULL) { in txl_clear() 82 free(tx_list[d].packet); in txl_clear() 83 tx_list[d].packet = NULL; in txl_clear()
|
| D | p2G4_com.c | 44 void p2G4_phy_resp_rx_addr_found(uint d, p2G4_rx_done_t* rx_done_s, uint8_t *packet) { in p2G4_phy_resp_rx_addr_found() argument 48 pb_send_payload(cb_med_state.ff_ptd[d], packet, rx_done_s->packet_size); in p2G4_phy_resp_rx_addr_found() 56 void p2G4_phy_resp_rxv2_addr_found(uint d, p2G4_rxv2_done_t* rx_done_s, uint8_t *packet) { in p2G4_phy_resp_rxv2_addr_found() argument 60 pb_send_payload(cb_med_state.ff_ptd[d], packet, rx_done_s->packet_size); in p2G4_phy_resp_rxv2_addr_found()
|
| D | p2G4_pending_tx_rx_list.h | 22 uint8_t *packet; member 65 void txl_register(uint d, p2G4_txv2_t *tx_s, uint8_t* packet);
|
| D | p2G4_dump.c | 377 bs_hex_dump(packetstr, tx->packet, tx->tx_s.packet_size); in dump_txv1() 418 bs_hex_dump(packetstr, tx->packet, tx->tx_s.packet_size); in dump_txv2() 434 void dump_rxv1(rx_status_t *rx_st, uint8_t* packet, uint dev_nbr){ in dump_rxv1() argument 481 if ( ( resp->packet_size > 0 ) && ( packet != NULL ) ) { in dump_rxv1() 483 bs_hex_dump(packetstr, packet, resp->packet_size); in dump_rxv1() 493 void dump_rxv2(rx_status_t *rx_st, uint8_t* packet, uint dev_nbr){ in dump_rxv2() argument 583 if ( ( resp->packet_size > 0 ) && ( packet != NULL ) ) { in dump_rxv2() 585 bs_hex_dump(packetstr, packet, resp->packet_size); in dump_rxv2() 595 void dump_rx(rx_status_t *rx_st, uint8_t* packet, uint dev_nbr) { in dump_rx() argument 596 dump_rxv1(rx_st, packet, dev_nbr); in dump_rx() [all …]
|
| D | p2G4_dump.h | 49 void dump_rx(rx_status_t *rx_st, uint8_t* packet, uint d);
|
| D | p2G4_com.h | 24 void p2G4_phy_resp_rxv2_addr_found(uint d, p2G4_rxv2_done_t* rx_done_s, uint8_t *packet);
|
| D | p2G4_main.c | 384 static void rx_resp_addr_found(uint d, rx_status_t *rx_status, uint8_t *packet) { in rx_resp_addr_found() argument 388 p2G4_phy_resp_rx_addr_found(d, &rx_done_v1, packet); in rx_resp_addr_found() 390 p2G4_phy_resp_rxv2_addr_found(d, &rx_status->rx_done_s, packet); in rx_resp_addr_found() 532 rx_resp_addr_found(d, &rx_a[d], tx_l_c.tx_list[rx_a[d].tx_nbr].packet); in f_rx_sync() 579 dump_rx(&rx_a[d], tx_l_c.tx_list[rx_a[d].tx_nbr].packet, d); in f_rx_sync() 642 dump_rx(&rx_a[d],tx_l_c.tx_list[rx_a[d].tx_nbr].packet,d); in f_rx_payload()
|
| /babblesim_ext_2G4_phy_v1-latest/docs/ |
| D | README_dumps.md | 24 * start_time : microsecond when the first bit of the packet in air starts (1st bit of the preamble) 25 * end_time: microsecond when the last bit of the packet ends (last bit of the CRC). Note that a pac… 27 * phy_address : Physical address / sync word of the packet 30 * abort_time: When was the packet transmission aborted, or TIME_NEVER (2^64-1) if not aborted. 31 …ernal info) When did the device request to reevaluate the possibility to abort the packet last time 32 * packet_size: Size of the packet in bytes (not counting preamble or syncword, but counting header,… 33 * packet: Actual packet data (packet_size bytes) 48 * header_duration: Duration of the packet header (for 1Mbps BLE, 16 micros) 50 * abort_time: When was the packet reception aborted, or TIME_NEVER (2^64-1) if not aborted. 53 * biterrors: How many bit errors there was during the packet reception [all …]
|