]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/rtl8723au/include/wifi.h
staging: rtl8723au: Fold get_hdr_bssid() into update_recvframe_phyinfo()
[karo-tx-linux.git] / drivers / staging / rtl8723au / include / wifi.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  ******************************************************************************/
15 #ifndef _WIFI_H_
16 #define _WIFI_H_
17
18 #define P80211CAPTURE_VERSION   0x80211001
19
20 /*  This value is tested by WiFi 11n Test Plan 5.2.3.
21  *  This test verifies the WLAN NIC can update the NAV through sending
22  *  the CTS with large duration.
23  */
24 #define WiFiNavUpperUs          30000   /*  30 ms */
25
26 enum WIFI_FRAME_TYPE {
27         WIFI_MGT_TYPE  =        (0),
28         WIFI_CTRL_TYPE =        (BIT(2)),
29         WIFI_DATA_TYPE =        (BIT(3)),
30         WIFI_QOS_DATA_TYPE      = (BIT(7)|BIT(3)),      /*  QoS Data */
31 };
32
33 enum WIFI_FRAME_SUBTYPE {
34         /*  below is for mgt frame */
35         WIFI_ASSOCREQ = (0 | WIFI_MGT_TYPE),
36         WIFI_ASSOCRSP = (BIT(4) | WIFI_MGT_TYPE),
37         WIFI_REASSOCREQ = (BIT(5) | WIFI_MGT_TYPE),
38         WIFI_REASSOCRSP = (BIT(5) | BIT(4) | WIFI_MGT_TYPE),
39         WIFI_PROBEREQ = (BIT(6) | WIFI_MGT_TYPE),
40         WIFI_PROBERSP = (BIT(6) | BIT(4) | WIFI_MGT_TYPE),
41         WIFI_BEACON = (BIT(7) | WIFI_MGT_TYPE),
42         WIFI_ATIM = (BIT(7) | BIT(4) | WIFI_MGT_TYPE),
43         WIFI_DISASSOC = (BIT(7) | BIT(5) | WIFI_MGT_TYPE),
44         WIFI_AUTH = (BIT(7) | BIT(5) | BIT(4) | WIFI_MGT_TYPE),
45         WIFI_DEAUTH = (BIT(7) | BIT(6) | WIFI_MGT_TYPE),
46         WIFI_ACTION = (BIT(7) | BIT(6) | BIT(4) | WIFI_MGT_TYPE),
47
48         /*  below is for control frame */
49         WIFI_PSPOLL = (BIT(7) | BIT(5) | WIFI_CTRL_TYPE),
50         WIFI_RTS = (BIT(7) | BIT(5) | BIT(4) | WIFI_CTRL_TYPE),
51         WIFI_CTS = (BIT(7) | BIT(6) | WIFI_CTRL_TYPE),
52         WIFI_ACK = (BIT(7) | BIT(6) | BIT(4) | WIFI_CTRL_TYPE),
53         WIFI_CFEND = (BIT(7) | BIT(6) | BIT(5) | WIFI_CTRL_TYPE),
54         WIFI_CFEND_CFACK = (BIT(7) | BIT(6) | BIT(5) | BIT(4) | WIFI_CTRL_TYPE),
55
56         /*  below is for data frame */
57         WIFI_DATA = (0 | WIFI_DATA_TYPE),
58         WIFI_DATA_CFACK = (BIT(4) | WIFI_DATA_TYPE),
59         WIFI_DATA_CFPOLL = (BIT(5) | WIFI_DATA_TYPE),
60         WIFI_DATA_CFACKPOLL = (BIT(5) | BIT(4) | WIFI_DATA_TYPE),
61         WIFI_DATA_NULL = (BIT(6) | WIFI_DATA_TYPE),
62         WIFI_CF_ACK = (BIT(6) | BIT(4) | WIFI_DATA_TYPE),
63         WIFI_CF_POLL = (BIT(6) | BIT(5) | WIFI_DATA_TYPE),
64         WIFI_CF_ACKPOLL = (BIT(6) | BIT(5) | BIT(4) | WIFI_DATA_TYPE),
65         WIFI_QOS_DATA_NULL = (BIT(6) | WIFI_QOS_DATA_TYPE),
66 };
67
68
69 enum WIFI_REG_DOMAIN {
70         DOMAIN_FCC              = 1,
71         DOMAIN_IC               = 2,
72         DOMAIN_ETSI             = 3,
73         DOMAIN_SPAIN            = 4,
74         DOMAIN_FRANCE           = 5,
75         DOMAIN_MKK              = 6,
76         DOMAIN_ISRAEL           = 7,
77         DOMAIN_MKK1             = 8,
78         DOMAIN_MKK2             = 9,
79         DOMAIN_MKK3             = 10,
80         DOMAIN_MAX
81 };
82
83
84 #define SetToDs(pbuf)   \
85         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_TODS))
86
87 #define SetFrDs(pbuf)   \
88         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_FROMDS))
89
90 #define SetMFrag(pbuf)  \
91         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS))
92
93 #define ClearMFrag(pbuf)        \
94         (*(__le16 *)(pbuf) &= (~cpu_to_le16(IEEE80211_FCTL_MOREFRAGS)))
95
96 #define SetRetry(pbuf)  \
97         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_RETRY))
98
99 #define SetPwrMgt(pbuf) \
100         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_PM))
101
102 #define SetMData(pbuf)  \
103         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_MOREDATA))
104
105 #define SetPrivacy(pbuf)        \
106         (*(__le16 *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_PROTECTED))
107
108 #define SetFrameType(pbuf, type)        \
109         do {    \
110                 *(__le16 *)(pbuf) &= __constant_cpu_to_le16(~(BIT(3) | BIT(2))); \
111                 *(__le16 *)(pbuf) |= __constant_cpu_to_le16(type); \
112         } while (0)
113
114 #define SetFrameSubType(pbuf, type) \
115         do {    \
116                 *(__le16 *)(pbuf) &= cpu_to_le16(~(BIT(7) | BIT(6) | BIT(5) | BIT(4) | BIT(3) | BIT(2))); \
117                 *(__le16 *)(pbuf) |= cpu_to_le16(type); \
118         } while (0)
119
120 #define GetTupleCache(pbuf)     (cpu_to_le16(*(unsigned short *)((unsigned long)(pbuf) + 22)))
121
122 #define SetFragNum(pbuf, num) \
123         do {    \
124                 *(unsigned short *)((unsigned long)(pbuf) + 22) = \
125                         ((*(unsigned short *)((unsigned long)(pbuf) + 22)) & le16_to_cpu(~(0x000f))) | \
126                         cpu_to_le16(0x0f & (num));     \
127         } while (0)
128
129 #define SetSeqNum(pbuf, num) \
130         do {    \
131                 *(__le16 *)((size_t)(pbuf) + 22) = \
132                         ((*(__le16 *)((size_t)(pbuf) + 22)) & cpu_to_le16((unsigned short)0x000f)) | \
133                         cpu_to_le16((unsigned short)(0xfff0 & (num << 4))); \
134         } while (0)
135
136 #define SetDuration(pbuf, dur) \
137         (*(__le16 *)((unsigned long)(pbuf) + 2) =               \
138          cpu_to_le16(0xffff & (dur)))
139
140 #define SetPriority(pbuf, tid)  \
141         (*(__le16 *)(pbuf) |= cpu_to_le16(tid & 0xf))
142
143 #define SetEOSP(pbuf, eosp)     \
144         (*(__le16 *)(pbuf) |= cpu_to_le16((eosp & 1) << 4))
145
146 #define SetAckpolicy(pbuf, ack) \
147         (*(__le16 *)(pbuf) |= cpu_to_le16((ack & 3) << 5))
148
149 #define SetAMsdu(pbuf, amsdu)   \
150         (*(__le16 *)(pbuf) |= cpu_to_le16((amsdu & 1) << 7))
151
152 #define GetAid(pbuf)                                                    \
153         (cpu_to_le16(*(unsigned short *)((unsigned long)(pbuf) + 2)) &  \
154          0x3fff)
155
156 #define GetTid(pbuf)                                                    \
157         (cpu_to_le16(*(unsigned short *)((unsigned long)(pbuf) +        \
158          (((ieee80211_has_tods(pbuf)<<1) |                              \
159          ieee80211_has_fromds(pbuf)) == 3 ? 30 : 24))) & 0x000f)
160
161 /*-----------------------------------------------------------------------------
162                         Below is for the security related definition
163 ------------------------------------------------------------------------------*/
164 #define _RESERVED_FRAME_TYPE_           0
165 #define _SKB_FRAME_TYPE_                2
166 #define _PRE_ALLOCMEM_                  1
167 #define _PRE_ALLOCHDR_                  3
168 #define _PRE_ALLOCLLCHDR_               4
169 #define _PRE_ALLOCICVHDR_               5
170 #define _PRE_ALLOCMICHDR_               6
171
172 #define _SIFSTIME_                                      \
173         ((priv->pmib->dot11BssType.net_work_type & WIRELESS_11A) ? 16 : 10)
174 #define _ACKCTSLNG_                     14      /* 14 bytes long, including crclng */
175 #define _CRCLNG_                        4
176
177 #define _ASOCREQ_IE_OFFSET_             4       /*  excluding wlan_hdr */
178 #define _ASOCRSP_IE_OFFSET_             6
179 #define _REASOCREQ_IE_OFFSET_           10
180 #define _REASOCRSP_IE_OFFSET_           6
181 #define _PROBEREQ_IE_OFFSET_            0
182 #define _PROBERSP_IE_OFFSET_            12
183 #define _AUTH_IE_OFFSET_                6
184 #define _DEAUTH_IE_OFFSET_              0
185 #define _BEACON_IE_OFFSET_              12
186 #define _PUBLIC_ACTION_IE_OFFSET_       8
187
188 #define _FIXED_IE_LENGTH_               _BEACON_IE_OFFSET_
189
190
191 #define EID_BSSIntolerantChlReport      73
192
193 /* ---------------------------------------------------------------------------
194                                         Below is the fixed elements...
195 -----------------------------------------------------------------------------*/
196 #define _AUTH_ALGM_NUM_         2
197 #define _AUTH_SEQ_NUM_          2
198 #define _BEACON_ITERVAL_        2
199 #define _CAPABILITY_            2
200 #define _CURRENT_APADDR_        6
201 #define _LISTEN_INTERVAL_       2
202 #define _ASOC_ID_               2
203 #define _STATUS_CODE_           2
204 #define _TIMESTAMP_             8
205
206 #define AUTH_ODD_TO             0
207 #define AUTH_EVEN_TO            1
208
209 #define WLAN_ETHCONV_ENCAP      1
210 #define WLAN_ETHCONV_RFC1042    2
211 #define WLAN_ETHCONV_8021h      3
212
213 #define cap_ESS         BIT(0)
214 #define cap_IBSS        BIT(1)
215 #define cap_CFPollable  BIT(2)
216 #define cap_CFRequest   BIT(3)
217 #define cap_Privacy     BIT(4)
218 #define cap_ShortPremble BIT(5)
219 #define cap_PBCC        BIT(6)
220 #define cap_ChAgility   BIT(7)
221 #define cap_SpecMgmt    BIT(8)
222 #define cap_QoS         BIT(9)
223 #define cap_ShortSlot   BIT(10)
224
225 /*-----------------------------------------------------------------------------
226                                 Below is the definition for 802.11i / 802.1x
227 ------------------------------------------------------------------------------*/
228 #define _IEEE8021X_MGT_                 1       /*  WPA */
229 #define _IEEE8021X_PSK_                 2       /*  WPA with pre-shared key */
230
231 /*
232 #define _NO_PRIVACY_                    0
233 #define _WEP_40_PRIVACY_                1
234 #define _TKIP_PRIVACY_                  2
235 #define _WRAP_PRIVACY_                  3
236 #define _CCMP_PRIVACY_                  4
237 #define _WEP_104_PRIVACY_               5
238 #define _WEP_WPA_MIXED_PRIVACY_ 6       WEP + WPA
239 */
240
241 /*-----------------------------------------------------------------------------
242                                 Below is the definition for WMM
243 ------------------------------------------------------------------------------*/
244 #define _WMM_IE_Length_                         7  /*  for WMM STA */
245 #define _WMM_Para_Element_Length_               24
246
247
248 /*-----------------------------------------------------------------------------
249                                 Below is the definition for 802.11n
250 ------------------------------------------------------------------------------*/
251
252 #define SetOrderBit(pbuf)                                               \
253         (*(unsigned short *)(pbuf) |= cpu_to_le16(_ORDER_))
254
255 #define GetOrderBit(pbuf)               \
256         (((*(unsigned short *)(pbuf)) & le16_to_cpu(_ORDER_)) != 0)
257
258
259 /* struct rtw_ieee80211_ht_cap - HT additional information
260  *
261  * This structure refers to "HT information element" as
262  * described in 802.11n draft section 7.3.2.53
263  */
264 struct ieee80211_ht_addt_info {
265         unsigned char   control_chan;
266         unsigned char   ht_param;
267         unsigned short  operation_mode;
268         unsigned short  stbc_param;
269         unsigned char   basic_set[16];
270 } __packed;
271
272 struct HT_caps_element {
273         union {
274                 struct {
275                         unsigned short  HT_caps_info;
276                         unsigned char   AMPDU_para;
277                         unsigned char   MCS_rate[16];
278                         unsigned short  HT_ext_caps;
279                         unsigned int    Beamforming_caps;
280                         unsigned char   ASEL_caps;
281                 } HT_cap_element;
282                 unsigned char HT_cap[26];
283         } u;
284 } __packed;
285
286 struct HT_info_element {
287         unsigned char   primary_channel;
288         unsigned char   infos[5];
289         unsigned char   MCS_rate[16];
290 }  __packed;
291
292 struct AC_param {
293         unsigned char           ACI_AIFSN;
294         unsigned char           CW;
295         unsigned short  TXOP_limit;
296 }  __packed;
297
298 struct WMM_para_element {
299         unsigned char           QoS_info;
300         unsigned char           reserved;
301         struct AC_param ac_param[4];
302 }  __packed;
303
304 struct ADDBA_request {
305         unsigned char           dialog_token;
306         unsigned short  BA_para_set;
307         unsigned short  BA_timeout_value;
308         unsigned short  BA_starting_seqctrl;
309 }  __packed;
310
311
312 #define OP_MODE_PURE                    0
313 #define OP_MODE_MAY_BE_LEGACY_STAS      1
314 #define OP_MODE_20MHZ_HT_STA_ASSOCED    2
315 #define OP_MODE_MIXED                   3
316
317 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK        ((u8) BIT(0) | BIT(1))
318 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE           ((u8) BIT(0))
319 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW           ((u8) BIT(0) | BIT(1))
320 #define HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH           ((u8) BIT(2))
321 #define HT_INFO_HT_PARAM_RIFS_MODE                      ((u8) BIT(3))
322 #define HT_INFO_HT_PARAM_CTRL_ACCESS_ONLY               ((u8) BIT(4))
323 #define HT_INFO_HT_PARAM_SRV_INTERVAL_GRANULARITY       ((u8) BIT(5))
324
325 #define HT_INFO_OPERATION_MODE_OP_MODE_MASK     \
326                 ((u16) (0x0001 | 0x0002))
327 #define HT_INFO_OPERATION_MODE_OP_MODE_OFFSET           0
328 #define HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT      ((u8) BIT(2))
329 #define HT_INFO_OPERATION_MODE_TRANSMIT_BURST_LIMIT     ((u8) BIT(3))
330 #define HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT       ((u8) BIT(4))
331
332 #define HT_INFO_STBC_PARAM_DUAL_BEACON          ((u16) BIT(6))
333 #define HT_INFO_STBC_PARAM_DUAL_STBC_PROTECT    ((u16) BIT(7))
334 #define HT_INFO_STBC_PARAM_SECONDARY_BCN        ((u16) BIT(8))
335 #define HT_INFO_STBC_PARAM_LSIG_TXOP_PROTECT_ALLOWED    ((u16) BIT(9))
336 #define HT_INFO_STBC_PARAM_PCO_ACTIVE           ((u16) BIT(10))
337 #define HT_INFO_STBC_PARAM_PCO_PHASE            ((u16) BIT(11))
338
339
340
341 /*      ===============WPS Section=============== */
342 /*      For WPSv1.0 */
343 #define WPSOUI                                  0x0050f204
344 /*      WPS attribute ID */
345 #define WPS_ATTR_VER1                           0x104A
346 #define WPS_ATTR_SIMPLE_CONF_STATE              0x1044
347 #define WPS_ATTR_RESP_TYPE                      0x103B
348 #define WPS_ATTR_UUID_E                         0x1047
349 #define WPS_ATTR_MANUFACTURER                   0x1021
350 #define WPS_ATTR_MODEL_NAME                     0x1023
351 #define WPS_ATTR_MODEL_NUMBER                   0x1024
352 #define WPS_ATTR_SERIAL_NUMBER                  0x1042
353 #define WPS_ATTR_PRIMARY_DEV_TYPE               0x1054
354 #define WPS_ATTR_SEC_DEV_TYPE_LIST              0x1055
355 #define WPS_ATTR_DEVICE_NAME                    0x1011
356 #define WPS_ATTR_CONF_METHOD                    0x1008
357 #define WPS_ATTR_RF_BANDS                       0x103C
358 #define WPS_ATTR_DEVICE_PWID                    0x1012
359 #define WPS_ATTR_REQUEST_TYPE                   0x103A
360 #define WPS_ATTR_ASSOCIATION_STATE              0x1002
361 #define WPS_ATTR_CONFIG_ERROR                   0x1009
362 #define WPS_ATTR_VENDOR_EXT                     0x1049
363 #define WPS_ATTR_SELECTED_REGISTRAR             0x1041
364
365 /*      Value of WPS attribute "WPS_ATTR_DEVICE_NAME */
366 #define WPS_MAX_DEVICE_NAME_LEN                 32
367
368 /*      Value of WPS Request Type Attribute */
369 #define WPS_REQ_TYPE_ENROLLEE_INFO_ONLY         0x00
370 #define WPS_REQ_TYPE_ENROLLEE_OPEN_8021X        0x01
371 #define WPS_REQ_TYPE_REGISTRAR                  0x02
372 #define WPS_REQ_TYPE_WLAN_MANAGER_REGISTRAR     0x03
373
374 /*      Value of WPS Response Type Attribute */
375 #define WPS_RESPONSE_TYPE_INFO_ONLY             0x00
376 #define WPS_RESPONSE_TYPE_8021X                 0x01
377 #define WPS_RESPONSE_TYPE_REGISTRAR             0x02
378 #define WPS_RESPONSE_TYPE_AP                    0x03
379
380 /*      Value of WPS WiFi Simple Configuration State Attribute */
381 #define WPS_WSC_STATE_NOT_CONFIG                0x01
382 #define WPS_WSC_STATE_CONFIG                    0x02
383
384 /*      Value of WPS Version Attribute */
385 #define WPS_VERSION_1                           0x10
386
387 /*      Value of WPS Configuration Method Attribute */
388 #define WPS_CONFIG_METHOD_FLASH                 0x0001
389 #define WPS_CONFIG_METHOD_ETHERNET              0x0002
390 #define WPS_CONFIG_METHOD_LABEL                 0x0004
391 #define WPS_CONFIG_METHOD_DISPLAY               0x0008
392 #define WPS_CONFIG_METHOD_E_NFC                 0x0010
393 #define WPS_CONFIG_METHOD_I_NFC                 0x0020
394 #define WPS_CONFIG_METHOD_NFC                   0x0040
395 #define WPS_CONFIG_METHOD_PBC                   0x0080
396 #define WPS_CONFIG_METHOD_KEYPAD                0x0100
397 #define WPS_CONFIG_METHOD_VPBC                  0x0280
398 #define WPS_CONFIG_METHOD_PPBC                  0x0480
399 #define WPS_CONFIG_METHOD_VDISPLAY              0x2008
400 #define WPS_CONFIG_METHOD_PDISPLAY              0x4008
401
402 /*      Value of Category ID of WPS Primary Device Type Attribute */
403 #define WPS_PDT_CID_DISPLAYS                    0x0007
404 #define WPS_PDT_CID_MULIT_MEDIA                 0x0008
405 #define WPS_PDT_CID_RTK_WIDI                    WPS_PDT_CID_MULIT_MEDIA
406
407 /*      Value of Sub Category ID of WPS Primary Device Type Attribute */
408 #define WPS_PDT_SCID_MEDIA_SERVER               0x0005
409 #define WPS_PDT_SCID_RTK_DMP                    WPS_PDT_SCID_MEDIA_SERVER
410
411 /*      Value of Device Password ID */
412 #define WPS_DPID_PIN                            0x0000
413 #define WPS_DPID_USER_SPEC                      0x0001
414 #define WPS_DPID_MACHINE_SPEC                   0x0002
415 #define WPS_DPID_REKEY                          0x0003
416 #define WPS_DPID_PBC                            0x0004
417 #define WPS_DPID_REGISTRAR_SPEC                 0x0005
418
419 /*      Value of WPS RF Bands Attribute */
420 #define WPS_RF_BANDS_2_4_GHZ                    0x01
421 #define WPS_RF_BANDS_5_GHZ                      0x02
422
423 /*      Value of WPS Association State Attribute */
424 #define WPS_ASSOC_STATE_NOT_ASSOCIATED          0x00
425 #define WPS_ASSOC_STATE_CONNECTION_SUCCESS      0x01
426 #define WPS_ASSOC_STATE_CONFIGURATION_FAILURE   0x02
427 #define WPS_ASSOC_STATE_ASSOCIATION_FAILURE     0x03
428 #define WPS_ASSOC_STATE_IP_FAILURE              0x04
429
430 /*      P2P Public Action Frame ( Management Frame ) */
431 #define P2P_PUB_ACTION_ACTION                   0x09
432
433 /*      P2P Public Action Frame Type */
434 #define P2P_GO_NEGO_REQ                         0
435 #define P2P_GO_NEGO_RESP                        1
436 #define P2P_GO_NEGO_CONF                        2
437 #define P2P_INVIT_REQ                           3
438 #define P2P_INVIT_RESP                          4
439 #define P2P_DEVDISC_REQ                         5
440 #define P2P_DEVDISC_RESP                        6
441 #define P2P_PROVISION_DISC_REQ                  7
442 #define P2P_PROVISION_DISC_RESP                 8
443
444 /*      WPS Configuration Method */
445 #define WPS_CM_NONE                                     0x0000
446 #define WPS_CM_LABEL                                    0x0004
447 #define WPS_CM_DISPLYA                                  0x0008
448 #define WPS_CM_EXTERNAL_NFC_TOKEN                       0x0010
449 #define WPS_CM_INTEGRATED_NFC_TOKEN                     0x0020
450 #define WPS_CM_NFC_INTERFACE                            0x0040
451 #define WPS_CM_PUSH_BUTTON                              0x0080
452 #define WPS_CM_KEYPAD                                   0x0100
453 #define WPS_CM_SW_PUHS_BUTTON                           0x0280
454 #define WPS_CM_HW_PUHS_BUTTON                           0x0480
455 #define WPS_CM_SW_DISPLAY_PIN                           0x2008
456 #define WPS_CM_LCD_DISPLAY_PIN                          0x4008
457
458 #endif /*  _WIFI_H_ */