NameDateSize

..10-Oct-20124 KiB

Kbuild10-Oct-2012456

Kconfig10-Oct-2012286

ozappif.h10-Oct-20121.3 KiB

ozcdev.c10-Oct-201213.1 KiB

ozcdev.h10-Oct-2012627

ozconfig.h10-Oct-2012830

ozeltbuf.c10-Oct-20129.2 KiB

ozeltbuf.h10-Oct-20122.1 KiB

ozevent.c10-Oct-20123.1 KiB

ozevent.h10-Oct-20121,014

ozeventdef.h10-Oct-20121.2 KiB

ozhcd.c10-Oct-201266.4 KiB

ozhcd.h10-Oct-2012485

ozmain.c10-Oct-20121.7 KiB

ozpd.c10-Oct-201222.2 KiB

ozpd.h10-Oct-20123.1 KiB

ozproto.c10-Oct-201224.8 KiB

ozproto.h10-Oct-20122 KiB

ozprotocol.h10-Oct-20126.8 KiB

oztrace.c10-Oct-2012871

oztrace.h10-Oct-2012968

ozurbparanoia.c10-Oct-20121.6 KiB

ozurbparanoia.h10-Oct-2012544

ozusbif.h10-Oct-20121.3 KiB

ozusbsvc.c10-Oct-20127.5 KiB

ozusbsvc.h10-Oct-20121,002

ozusbsvc1.c10-Oct-201213.4 KiB

README10-Oct-20121.4 KiB

TODO10-Oct-2012588

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 paramter - 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