I see that there are metrics about rx events, but are there metrics about tx events? We are evaluating the chip and would like to have a good idea about how much the radio is transmitting. Is there anyway to get the tx packet count and/or tx duration?
Device:
i used Integrated processor configuration,I also want to know how to test.
Hi ben,
You can check the throughput_eval_peripheral for an implemenation of getting statistics of the transmited packets.
Thanks MT_dialog
This does not seem to take into account empty packets, it only tracks transmissions created by the application. Is there anywhere I can put a counter to track how many TXs the stack has generated?
Hi ben,
No it doesn't, you can try to place a counter in the $Sub$$BLE_RF_DIAG_Handler and count the BLE_EVT_TX events, this will count every transmittion activity of the da.
Thanks MT_dialog
And can this handler counters the successful TX or it just catch each TX action from application? Thanks, Dialog.
Hi caiziee,
This handler is executed in every radio activity, if you choose to only do something on each BLE_EVT_TX then will count every transmittion of the BLE device.
Thanks MT_dialog