Line No. | Rev | Author | Line |
---|---|---|---|
1 | 32 | kaklik | /****************************************************************************** |
2 | |||
3 | MRF24W10C Driver iwconfig |
||
4 | Module for Microchip TCP/IP Stack |
||
5 | -Provides access to MRF24W10C WiFi controller |
||
6 | -Reference: MRF24W10C Data sheet, IEEE 802.11 Standard |
||
7 | |||
8 | ******************************************************************************* |
||
9 | FileName: WFConsoleIwconfig.h |
||
10 | Dependencies: TCP/IP Stack header files |
||
11 | Processor: PIC18, PIC24F, PIC24H, dsPIC30F, dsPIC33F, PIC32 |
||
12 | Compiler: Microchip C32 v1.10b or higher |
||
13 | Microchip C30 v3.22 or higher |
||
14 | Microchip C18 v3.34 or higher |
||
15 | Company: Microchip Technology, Inc. |
||
16 | |||
17 | Software License Agreement |
||
18 | |||
19 | Copyright (C) 2002-2010 Microchip Technology Inc. All rights reserved. |
||
20 | |||
21 | Microchip licenses to you the right to use, modify, copy, and distribute: |
||
22 | (i) the Software when embedded on a Microchip microcontroller or digital |
||
23 | signal controller product ("Device") which is integrated into |
||
24 | Licensee's product; or |
||
25 | (ii) ONLY the Software driver source files ENC28J60.c, ENC28J60.h, |
||
26 | ENCX24J600.c and ENCX24J600.h ported to a non-Microchip device used in |
||
27 | conjunction with a Microchip ethernet controller for the sole purpose |
||
28 | of interfacing with the ethernet controller. |
||
29 | |||
30 | You should refer to the license agreement accompanying this Software for |
||
31 | additional information regarding your rights and obligations. |
||
32 | |||
33 | THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY |
||
34 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY |
||
35 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
||
36 | NON-INFRINGEMENT. IN NO EVENT SHALL MICROCHIP BE LIABLE FOR ANY INCIDENTAL, |
||
37 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST |
||
38 | OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS BY |
||
39 | THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), ANY CLAIMS |
||
40 | FOR INDEMNITY OR CONTRIBUTION, OR OTHER SIMILAR COSTS, WHETHER ASSERTED ON |
||
41 | THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR |
||
42 | OTHERWISE. |
||
43 | |||
44 | |||
45 | Author Date Comment |
||
46 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||
47 | KH 27 Jan 2010 Updated for MRF24WB0M |
||
48 | ******************************************************************************/ |
||
49 | |||
50 | #ifndef __WFCONSOLE_IWCONFIG_H |
||
51 | #define __WFCONSOLE_IWCONFIG_H |
||
52 | |||
53 | //============================================================================ |
||
54 | // Globals |
||
55 | //============================================================================ |
||
56 | |||
57 | typedef struct |
||
58 | { |
||
59 | UINT8 powerSaveState; // power save state |
||
60 | |||
61 | UINT8 cpId; // ID of a connection profle that is created by this |
||
62 | // iwconfig cmd |
||
63 | UINT8 connState; // connection state |
||
64 | BOOL isIdle; // true if connState is WF_CSTATE_NOT_CONNECTED |
||
65 | } tWFIwconfigCb; // iwconfig control block |
||
66 | |||
67 | extern tWFIwconfigCb iwconfigCb; |
||
68 | |||
69 | //============================================================================ |
||
70 | // Function Prototypes |
||
71 | //============================================================================ |
||
72 | extern void do_iwconfig_cmd(void); |
||
73 | |||
74 | //============================================================================ |
||
75 | // Function Prototypes (used by iwpriv) |
||
76 | //============================================================================ |
||
77 | extern BOOL iwconfigSetCb(void); |
||
78 | |||
79 | #endif /* __WFCONSOLE_IWCONFIG_H */ |
Powered by WebSVN v2.8.3