[go: nahoru, domu]

NameDateSize

..13-Oct-20154 KiB

Kconfig13-Oct-2015286

Makefile13-Oct-2015429

ozappif.h13-Oct-2015989

ozcdev.c13-Oct-201511.7 KiB

ozcdev.h13-Oct-2015585

ozdbg.h13-Oct-20151.3 KiB

ozeltbuf.c13-Oct-20156.2 KiB

ozeltbuf.h13-Oct-20151.9 KiB

ozhcd.c13-Oct-201558.4 KiB

ozhcd.h13-Oct-2015507

ozmain.c13-Oct-20151.5 KiB

ozpd.c13-Oct-201520.2 KiB

ozpd.h13-Oct-20153.5 KiB

ozproto.c13-Oct-201518.8 KiB

ozproto.h13-Oct-20152.1 KiB

ozprotocol.h13-Oct-20156.9 KiB

ozurbparanoia.c13-Oct-20151.3 KiB

ozurbparanoia.h13-Oct-2015604

ozusbif.h13-Oct-20151.3 KiB

ozusbsvc.c13-Oct-20156.5 KiB

ozusbsvc.h13-Oct-20151,002

ozusbsvc1.c13-Oct-201512.3 KiB

README13-Oct-20151.4 KiB

TODO13-Oct-2015595

README

1OZWPAN USB Host Controller Driver
2---------------------------------
3This driver is a USB HCD driver that does not have an associated a physical
4device but instead uses Wi-Fi to communicate with the wireless peripheral.
5The USB requests are converted into a layer 2 network protocol and transmitted
6on the network using an ethertype (0x892e) regestered to Ozmo Device Inc.
7This driver is compatible with existing wireless devices that use Ozmo Devices
8technology.
9
10To operate the driver must be bound to a suitable network interface. This can
11be done when the module is loaded (specifying the name of the network interface
12as a parameter - e.g. 'insmod ozwpan g_net_dev=go0') or can be bound after
13loading using an ioctl call. See the ozappif.h file and the ioctls
14OZ_IOCTL_ADD_BINDING and OZ_IOCTL_REMOVE_BINDING.
15
16The devices connect to the host use Wi-Fi Direct so a network card that supports
17Wi-Fi direct is required. A recent version (0.8.x or later) version of the
18wpa_supplicant can be used to setup the network interface to create a persistent
19autonomous group (for older pre-WFD peripherals) or put in a listen state to
20allow group negotiation to occur for more recent devices that support WFD.
21
22The protocol used over the network does not directly mimic the USB bus
23transactions as this would be rather busy and inefficient. Instead the chapter 9
24requests are converted into a request/response pair of messages. (See
25ozprotocol.h for data structures used in the protocol).
26