I'm using the following post by Mike Hall to set up this USB adapter for
802.11 in my platform builder 5 project.
http://blogs.msdn.com/mikehall/archive/2006/02/28/540912.aspx
I only need the device to function as a client to connect to an access
point.
Do I need all the sysgens he has listed or only a subset?
Also, not sure how to add a sysgen with a value of "". I just added a space
to enable the OK button.
THX
Quote:
You don't need a driver, that's the cool thing, you only need to have the
appropriate SYSGENS set.
=============================================
For USB Host
=============================================
SYSGEN_USB=1 ==> usbhost & usbd
BSP_USB_UHCI=1 ==> includes uhci.dll
BSP_USB_OHCI=1 ==> includes ohci2.dll
BSP_USB_EHCI=1 ==> includes ehci.dll
BSP_NOUSB=""
IMG_NOUSB=""
=============================================
For USB Function
=============================================
SYSGEN_USBFN_NET2280=1 ==> to have net2280
SYSGEN_USBFN_SERIAL=1 ==> to have serialusbfn
=============================================
For RNDIS Host
=============================================
SYSGEN_ETH_USB_HOST ==> To have usb8023 & rndimp included
=============================================
For RNDIS Function
=============================================
SYSGEN_USBFN_ETHERNET=1
- Mike