Cooked BTLE PPI header See ``ppi_btle_t`` in https://github.com/greatscottgadgets/libbtbb/blob/master/lib/src/pcap.c
| 51 | |
| 52 | |
| 53 | class BTLE_PPI(PPI_Element): |
| 54 | """Cooked BTLE PPI header |
| 55 | |
| 56 | See ``ppi_btle_t`` in |
| 57 | https://github.com/greatscottgadgets/libbtbb/blob/master/lib/src/pcap.c |
| 58 | """ |
| 59 | name = "BTLE PPI header" |
| 60 | fields_desc = [ |
| 61 | ByteField("btle_version", 0), |
| 62 | # btle_channel is a frequency in MHz. Named for consistency with |
| 63 | # other users. |
| 64 | LEShortField("btle_channel", None), |
| 65 | ByteField("btle_clkn_high", None), |
| 66 | LEIntField("btle_clk_100ns", None), |
| 67 | SignedByteField("rssi_max", None), |
| 68 | SignedByteField("rssi_min", None), |
| 69 | SignedByteField("rssi_avg", None), |
| 70 | ByteField("rssi_count", None) |
| 71 | ] |
| 72 | |
| 73 | |
| 74 | class BTLE_RF(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…