Skip to content

Commit

Permalink
updated the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
silabs-nagamani committed Sep 3, 2024
1 parent 7065a46 commit 79f5713
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions SiWx917/wlan_ble/iot-pa-coex-cli_demo_wifi_ble/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,44 @@ Read BLE transmit & receive statistics
```perl
bt_per_stats
```
**Response Structure:**
```perl
// Packet count of CRC fails (Cyclic Redundancy Check (CRC))
uint16_t crc_fail_cnt;

// Packet count of CRC fails (Cyclic Redundancy Check (CRC))
uint16_t crc_pass_cnt;

// Packet count of aborted Tx
uint16_t tx_abort_cnt;

// Packet count of dropped Rx
uint16_t rx_drop_cnt;

// Packet count of CCA Idle (Clear Channel Assessment (CCA))
uint16_t rx_cca_idle_cnt;

// Packet count of Rx start
uint16_t rx_start_idle_cnt;

// Packet count of aborted Rx
uint16_t rx_abrt_cnt;

// Packet count of successful transmissions
uint16_t tx_dones;

// Received Signal Strength Indicator of the packet
int8_t rssi;

// Packet count of ID packets received
uint16_t id_pkts_rcvd;

// Dummy array of length 5
uint16_t dummy[5];

```

**Example:**
```perl
bt_per_stats
Expand Down

0 comments on commit 79f5713

Please sign in to comment.