• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

KconfigD23-Jun-2016286 108

MakefileD23-Jun-2016429 1711

READMED23-Jun-20161.4 KiB2622

TODOD23-Jun-2016595 1513

ozappif.hD23-Jun-2016989 3722

ozcdev.cD23-Jun-201611.7 KiB555453

ozcdev.hD23-Jun-2016585 1810

ozdbg.hD23-Jun-20161.3 KiB5540

ozeltbuf.cD23-Jun-20166.2 KiB253193

ozeltbuf.hD23-Jun-20161.9 KiB6649

ozhcd.cD23-Jun-201658.3 KiB2,3021,747

ozhcd.hD23-Jun-2016507 168

ozmain.cD23-Jun-20161.7 KiB7244

ozpd.cD23-Jun-201620.2 KiB887667

ozpd.hD23-Jun-20163.5 KiB135104

ozproto.cD23-Jun-201618.8 KiB814655

ozproto.hD23-Jun-20162.1 KiB6339

ozprotocol.hD23-Jun-20166.9 KiB376283

ozurbparanoia.cD23-Jun-20161.3 KiB5539

ozurbparanoia.hD23-Jun-2016604 2010

ozusbif.hD23-Jun-20161.3 KiB4420

ozusbsvc.cD23-Jun-20166.5 KiB264169

ozusbsvc.hD23-Jun-20161,002 3318

ozusbsvc1.cD23-Jun-201612.4 KiB463383

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