Macros
Defines
Collaboration diagram for Defines:

Macros

#define M2M_1X_PWD_MAX   41
 
#define M2M_1X_USR_NAME_MAX   21
 
#define M2M_AP_CMD_BASE   70
 
#define M2M_ASSOC_FAIL   ((uint8)4)
 
#define M2M_AUTH_FAIL   ((uint8)3)
 
#define M2M_BUFFER_MAX_SIZE   (1600UL - 4)
 
#define M2M_CONFIG_CMD_BASE   1
 
#define M2M_CUST_IE_LEN_MAX   252
 
#define M2M_DEVICE_NAME_MAX   48
 
#define M2M_ETHERNET_HDR_LEN   14
 
#define M2M_ETHERNET_HDR_OFFSET   34
 
#define M2M_FASTCONNECT_DEFAULT_RSSI_THRESH   (-45)
 
#define M2M_JOIN_FAIL   ((uint8)2)
 
#define M2M_LISTEN_INTERVAL   1
 
#define M2M_MAC_ADDRES_LEN   6
 
#define M2M_MAX_PSK_LEN   65
 
#define M2M_MAX_SSID_LEN   33
 
#define M2M_OTA_CMD_BASE   100
 
#define M2M_P2P_CMD_BASE   90
 
#define M2M_SCAN_DEFAULT_NUM_PROBE   (2)
 
#define M2M_SCAN_DEFAULT_NUM_SLOTS   (2)
 
#define M2M_SCAN_DEFAULT_PASSIVE_SLOT_TIME   (300)
 
#define M2M_SCAN_DEFAULT_SLOT_TIME   (20)
 
#define M2M_SCAN_ERR_AP   ((sint8)-4)
 
#define M2M_SCAN_ERR_IP   ((sint8)-3)
 
#define M2M_SCAN_ERR_P2P   ((sint8)-5)
 
#define M2M_SCAN_ERR_WIFI   ((sint8)-2)
 
#define M2M_SCAN_ERR_WPS   ((sint8)-6)
 
#define M2M_SCAN_FAIL   ((uint8)1)
 
#define M2M_SERVER_CMD_BASE   120
 
#define M2M_STA_CMD_BASE   40
 
#define M2M_WIFI_FRAME_SUB_TYPE_ANY   0xFF
 
#define M2M_WIFI_FRAME_TYPE_ANY   0xFF
 
#define TLS_FILE_NAME_MAX   48
 
#define TLS_SRV_SEC_MAX_FILES   8
 
#define TLS_SRV_SEC_START_PATTERN_LEN   8
 
#define WEP_104_KEY_STRING_SIZE   ((uint8)26)
 
#define WEP_40_KEY_STRING_SIZE   ((uint8)10)
 
#define WEP_KEY_MAX_INDEX   ((uint8)4)
 

Detailed Description

Macro Definition Documentation

◆ M2M_1X_PWD_MAX

#define M2M_1X_PWD_MAX   41

The maximum size of the password including the NULL termination. It is used for RADIUS authentication in case of connecting the device to an AP secured with WPA-Enterprise.

Definition at line 217 of file m2m_types.h.

◆ M2M_1X_USR_NAME_MAX

#define M2M_1X_USR_NAME_MAX   21

The maximum size of the user name including the NULL termination. It is used for RADIUS authentication in case of connecting the device to an AP secured with WPA-Enterprise.

Definition at line 210 of file m2m_types.h.

◆ M2M_AP_CMD_BASE

#define M2M_AP_CMD_BASE   70

The base value of all the Access Point mode host commands opcodes.

Definition at line 234 of file m2m_types.h.

◆ M2M_ASSOC_FAIL

#define M2M_ASSOC_FAIL   ((uint8)4)

Indicates the WINC board has failed to associate with the AP.

Definition at line 282 of file m2m_types.h.

◆ M2M_AUTH_FAIL

#define M2M_AUTH_FAIL   ((uint8)3)

Indicates the WINC board has failed to authenticate with the AP.

Definition at line 279 of file m2m_types.h.

◆ M2M_BUFFER_MAX_SIZE

#define M2M_BUFFER_MAX_SIZE   (1600UL - 4)

Maximum size for the shared packet buffer.

Definition at line 170 of file m2m_types.h.

◆ M2M_CONFIG_CMD_BASE

#define M2M_CONFIG_CMD_BASE   1

The base value of all the Host configuration commands opcodes.

Definition at line 228 of file m2m_types.h.

◆ M2M_CUST_IE_LEN_MAX

#define M2M_CUST_IE_LEN_MAX   252

Maximum size for the Information Element.

Definition at line 223 of file m2m_types.h.

◆ M2M_DEVICE_NAME_MAX

#define M2M_DEVICE_NAME_MAX   48

Maximum Size for the device name including the NULL termination.

Definition at line 198 of file m2m_types.h.

◆ M2M_ETHERNET_HDR_LEN

#define M2M_ETHERNET_HDR_LEN   14

Length of the ethernet header in bytes.

Definition at line 184 of file m2m_types.h.

◆ M2M_ETHERNET_HDR_OFFSET

#define M2M_ETHERNET_HDR_OFFSET   34

Offset of the ethernet header within the WLAN Tx Buffer.

Definition at line 179 of file m2m_types.h.

◆ M2M_FASTCONNECT_DEFAULT_RSSI_THRESH

#define M2M_FASTCONNECT_DEFAULT_RSSI_THRESH   (-45)

The default threshold RSSI for fast reconnection to an AP.

Definition at line 270 of file m2m_types.h.

◆ M2M_JOIN_FAIL

#define M2M_JOIN_FAIL   ((uint8)2)

Indicates the WINC board has failed to join the BSS.

Definition at line 276 of file m2m_types.h.

◆ M2M_LISTEN_INTERVAL

#define M2M_LISTEN_INTERVAL   1

The STA uses the Listen Interval parameter to indicate to the AP how many beacon intervals it shall sleep before it retrieves the queued frames from the AP.

Definition at line 203 of file m2m_types.h.

◆ M2M_MAC_ADDRES_LEN

#define M2M_MAC_ADDRES_LEN   6

Size of the MAC address.

Definition at line 175 of file m2m_types.h.

◆ M2M_MAX_PSK_LEN

#define M2M_MAX_PSK_LEN   65

Maximum size for the WPA PSK including the NULL termination.

Definition at line 194 of file m2m_types.h.

◆ M2M_MAX_SSID_LEN

#define M2M_MAX_SSID_LEN   33

Maximum size for the Wi-Fi SSID including the NULL termination.

Definition at line 189 of file m2m_types.h.

◆ M2M_OTA_CMD_BASE

#define M2M_OTA_CMD_BASE   100

The base value of all the OTA mode host commands opcodes.

Definition at line 240 of file m2m_types.h.

◆ M2M_P2P_CMD_BASE

#define M2M_P2P_CMD_BASE   90

The base value of all the P2P mode host commands opcodes.

Definition at line 237 of file m2m_types.h.

◆ M2M_SCAN_DEFAULT_NUM_PROBE

#define M2M_SCAN_DEFAULT_NUM_PROBE   (2)

The default number of probes per slot.

Definition at line 267 of file m2m_types.h.

◆ M2M_SCAN_DEFAULT_NUM_SLOTS

#define M2M_SCAN_DEFAULT_NUM_SLOTS   (2)

The default number of scan slots used by the WINC board.

Definition at line 258 of file m2m_types.h.

◆ M2M_SCAN_DEFAULT_PASSIVE_SLOT_TIME

#define M2M_SCAN_DEFAULT_PASSIVE_SLOT_TIME   (300)

The passive scan slot default duration in ms.

Definition at line 264 of file m2m_types.h.

◆ M2M_SCAN_DEFAULT_SLOT_TIME

#define M2M_SCAN_DEFAULT_SLOT_TIME   (20)

The active scan slot default duration in ms.

Definition at line 261 of file m2m_types.h.

◆ M2M_SCAN_ERR_AP

#define M2M_SCAN_ERR_AP   ((sint8)-4)

Currently not used.

Definition at line 292 of file m2m_types.h.

◆ M2M_SCAN_ERR_IP

#define M2M_SCAN_ERR_IP   ((sint8)-3)

Currently not used.

Definition at line 289 of file m2m_types.h.

◆ M2M_SCAN_ERR_P2P

#define M2M_SCAN_ERR_P2P   ((sint8)-5)

Currently not used.

Definition at line 295 of file m2m_types.h.

◆ M2M_SCAN_ERR_WIFI

#define M2M_SCAN_ERR_WIFI   ((sint8)-2)

Currently not used.

Definition at line 286 of file m2m_types.h.

◆ M2M_SCAN_ERR_WPS

#define M2M_SCAN_ERR_WPS   ((sint8)-6)

Currently not used.

Definition at line 298 of file m2m_types.h.

◆ M2M_SCAN_FAIL

#define M2M_SCAN_FAIL   ((uint8)1)

Indicates the WINC board has failed to perform the scan operation.

Definition at line 273 of file m2m_types.h.

◆ M2M_SERVER_CMD_BASE

#define M2M_SERVER_CMD_BASE   120

The base value of all the Power Save mode host commands codes.

Definition at line 243 of file m2m_types.h.

◆ M2M_STA_CMD_BASE

#define M2M_STA_CMD_BASE   40

The base value of all the Station mode host commands opcodes.

Definition at line 231 of file m2m_types.h.

◆ M2M_WIFI_FRAME_SUB_TYPE_ANY

#define M2M_WIFI_FRAME_SUB_TYPE_ANY   0xFF

Receive frames with any sub type when configured as Monitor Mode.

Definition at line 309 of file m2m_types.h.

◆ M2M_WIFI_FRAME_TYPE_ANY

#define M2M_WIFI_FRAME_TYPE_ANY   0xFF

Receive any frame type when configured as Monitor Mode.

Definition at line 306 of file m2m_types.h.

◆ TLS_FILE_NAME_MAX

#define TLS_FILE_NAME_MAX   48

Maximum length for each TLS certificate file name.

Definition at line 316 of file m2m_types.h.

◆ TLS_SRV_SEC_MAX_FILES

#define TLS_SRV_SEC_MAX_FILES   8

Maximum number of certificates allowed in TLS_SRV section.

Definition at line 319 of file m2m_types.h.

◆ TLS_SRV_SEC_START_PATTERN_LEN

#define TLS_SRV_SEC_START_PATTERN_LEN   8

Length of certificate struct start pattern.

Definition at line 322 of file m2m_types.h.

◆ WEP_104_KEY_STRING_SIZE

#define WEP_104_KEY_STRING_SIZE   ((uint8)26)

Indicates the WEP key size for the 104 bit string passphrase.

Definition at line 252 of file m2m_types.h.

◆ WEP_40_KEY_STRING_SIZE

#define WEP_40_KEY_STRING_SIZE   ((uint8)10)

Indicates the WEP key size for the 40 bit string passphrase.

Definition at line 248 of file m2m_types.h.

◆ WEP_KEY_MAX_INDEX

#define WEP_KEY_MAX_INDEX   ((uint8)4)

Indicates the maximum key index value for WEP authentication.

Definition at line 255 of file m2m_types.h.



inertial_sense_ros
Author(s):
autogenerated on Sun Feb 28 2021 03:18:00