• Home
Name Date Size #Lines LOC

..--

KbuildD08-May-2024456 2017

KconfigD08-May-2024286 108

READMED08-May-20241.4 KiB2622

TODOD08-May-2024588 1513

ozappif.hD08-May-20241.3 KiB4730

ozcdev.cD08-May-202413.1 KiB522446

ozcdev.hD08-May-2024627 1911

ozconfig.hD08-May-2024830 2810

ozeltbuf.cD08-May-20249.2 KiB340282

ozeltbuf.hD08-May-20242.1 KiB7154

ozevent.cD08-May-20243.1 KiB11791

ozevent.hD08-May-20241,014 3224

ozeventdef.hD08-May-20241.2 KiB4838

ozhcd.cD08-May-202466.4 KiB2,2571,833

ozhcd.hD08-May-2024485 168

ozmain.cD08-May-20241.7 KiB5937

ozpd.cD08-May-202422.2 KiB831684

ozpd.hD08-May-20243.1 KiB12295

ozproto.cD08-May-202424.8 KiB958832

ozproto.hD08-May-20242 KiB7044

ozprotocol.hD08-May-20246.8 KiB373281

oztrace.cD08-May-2024871 3725

oztrace.hD08-May-2024968 3625

ozurbparanoia.cD08-May-20241.6 KiB5441

ozurbparanoia.hD08-May-2024544 2010

ozusbif.hD08-May-20241.3 KiB4420

ozusbsvc.cD08-May-20247.5 KiB246173

ozusbsvc.hD08-May-20241,002 3318

ozusbsvc1.cD08-May-202413.4 KiB438382

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