#include <nitro/wm.h>
typedef struct WMScanParam
{
WMBssDesc* scanBuf;
u16 channel;
u16 maxChannelTime;
u8 bssid[ 6 ];
u16 rsv[9];
} WMScanParam;
scanBuf | Designates a pointer to the buffer that stores the information about the parent devices discovered as a result of the search. Be sure to watch the cache, since ARM7 directly writes this data to the buffer. |
channel | Specifies the wireless channel to scan. Use a value in the range of 1-14. |
maxChannelTime | Specifies the maximum disconnect-scan time in milliseconds. Set to a value from 10 through 1,000. Normally, the value obtained in the WM_GetDispersionScanPeriod function should be designated here. |
bssid | Designates the MAC address of the parent device that is the target of the search. If everything is 0xFF, there will be no extraction via the MAC address, and all parent devices will be the target of the search. |
This structure is a collection of the information that must be set on a child machine when it begins scanning for a parent.
03/02/2005 Added information on allowable range of structure members
10/18/2004 Added a value that needs to be specified to maxChannelTime
10/05/2004 Standardized MAC address as u8
type
08/02/2004 Standardized structure names
07/29/2004 Initial version