|
@@ -30504,6 +30504,21 @@ typedef struct {
|
|
|
* A band value of 0x80 (-128) is invalid.
|
|
|
*/
|
|
|
A_UINT32 chain_rssi[WMI_MAX_CHAINS];
|
|
|
+ /* Carrier frequency offset
|
|
|
+ It is Difference between down conversion oscillator frequency at the receiver
|
|
|
+ versus carrier frequency of the received signal. To convert to ppm, below
|
|
|
+ equation needs to be used. Here, Fc is carrier frequency (primary 20 channel frequency) in Hz:
|
|
|
+
|
|
|
+ PPM = cfo_measurement(13 bits)/((2^13)/(800e-9)/2/Fc*1e6)
|
|
|
+ PPM ranges from -40 to +40
|
|
|
+
|
|
|
+ Bits 0 : 0 Set to 1 to indicate cfo mesurement value is valid
|
|
|
+ Bits 1 : 14 14 bits cfo measurement raw data. 14 bit is signed bit.
|
|
|
+ For the above ppm equation , use the first 13 bits to calculate.
|
|
|
+ */
|
|
|
+ A_UINT32 cfo_measurement_valid :1,
|
|
|
+ cfo_measurement :14,
|
|
|
+ reserved :17;
|
|
|
} wmi_peer_cfr_capture_event_fixed_param;
|
|
|
|
|
|
#define WMI_UNIFIED_CHAIN_PHASE_MASK 0x0000ffff
|