Class TxPwrInfo
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.TxPwrInfo
-
public class TxPwrInfo extends Object
This information element (IE) appears in wifiscan entries. It is called "Tx Pwr Info" in these entries, and "Transmit Power Envelope" in the 802.11 specification (section 9.4.2.161). Refer to the specification for more details. Language in javadocs is taken from the specification.
-
-
Field Summary
Fields Modifier and Type Field Description ShortlocalMaxTxPwrConstraint160MHzUnsigned 8 bits - Local maximum transmit power for both 160 MHz and 80+80 MHz.ShortlocalMaxTxPwrConstraint20MHzUnsigned 8 bits - Local maximum transmit power for 20 MHz.ShortlocalMaxTxPwrConstraint40MHzUnsigned 8 bits - Local maximum transmit power for 40 MHz.ShortlocalMaxTxPwrConstraint80MHzUnsigned 8 bits - Local maximum transmit power for 80 MHz.static intTYPEDefined in 802.11 table 9-92
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)inthashCode()static TxPwrInfoparse(com.google.gson.JsonObject contents)Parse TxPwrInfo IE from appropriate Json object.
-
-
-
Field Detail
-
TYPE
public static final int TYPE
Defined in 802.11 table 9-92- See Also:
- Constant Field Values
-
localMaxTxPwrConstraint20MHz
public final Short localMaxTxPwrConstraint20MHz
Unsigned 8 bits - Local maximum transmit power for 20 MHz. Required field.
-
localMaxTxPwrConstraint40MHz
public final Short localMaxTxPwrConstraint40MHz
Unsigned 8 bits - Local maximum transmit power for 40 MHz. Optional field.
-
localMaxTxPwrConstraint80MHz
public final Short localMaxTxPwrConstraint80MHz
Unsigned 8 bits - Local maximum transmit power for 80 MHz. Optional field.
-
localMaxTxPwrConstraint160MHz
public final Short localMaxTxPwrConstraint160MHz
Unsigned 8 bits - Local maximum transmit power for both 160 MHz and 80+80 MHz. Optional field.
-
-