BT test command, response of cmdstop after re_rx_per
Posted: Thu Jan 11, 2018 4:31 pm
I am trying to figure out how to interpret the information returned by the cmdstop command after having initiated a BT test with re_rx_per
From ESP32 Certification and Test Guide.pdf:
What does last parameter and second to last parameter mean here?
For example, in a test, were I send 1000 packets I get the following:
The first part 3e8 0 0 0 0 0 3e8 0 w I guess is giving information about the number of received packets and the packets that were in specified rate.
But what is the meaning of the three hex numbers in 54ec 5384 d485 b?
If I decrease the power level, I might also get information between the w and the p:
What do the 1 and the f refer to in 0 0 0 0 1 0 0 f p?
Any help is very much appreciated.
Regards,
Dario
From ESP32 Certification and Test Guide.pdf:
Code: Select all
Input cmdstop command to stop receiving packets.
The serial port will print the number of
packets that have been received.
The format of the number of received packets is
0 0 0 0 0 0 0 0 w 0 0 0 0 0 0 0 0 p 0 0 0 b 0 0
The last parameter (based on hexadecimal system) indicates the number of bit errors.
The second-to-last parameter (based on hexadecimal system) indicates the overall number
of the received bits at a certain data rate.
For example, in a test, were I send 1000 packets I get the following:
Code: Select all
rw_rx_per:type=0,chan=0,ulap=0x6bc6967e,ltaddr=0
RW RX PER
3e8 0 0 0 0 0 3e8 0 w 0 0 0 0 0 0 0 0 p 54ec 5384 d485 b 0 0
But what is the meaning of the three hex numbers in 54ec 5384 d485 b?
If I decrease the power level, I might also get information between the w and the p:
Code: Select all
rw_rx_per:type=0,chan=0,ulap=0x6bc6967e,ltaddr=0
RW RX PER
3a 0 0 0 0 0 3a 0 w 0 0 0 0 1 0 0 f p 5e4 5c5 f68 b 0 0
Any help is very much appreciated.
Regards,
Dario