├── .gitattributes ├── .gitignore ├── .pylintrc ├── COPYING ├── MANIFEST.in ├── README.rst ├── examples ├── hid │ └── device.py ├── kernel_mass_storage │ └── device.py ├── kernel_ncm │ └── device.py ├── kernel_sourcesink │ └── device.py └── usbcat │ ├── device.py │ ├── host.py │ └── slowprinter.py ├── functionfs ├── __init__.py ├── _version.py ├── ch9.py ├── common.py ├── functionfs.py ├── gadget.py ├── hid.py └── tests │ ├── README.rst │ ├── __init__.py │ ├── common.py │ ├── device.py │ └── host.py ├── setup.cfg ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | functionfs/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /functionfs.egg-info 3 | *.pyc 4 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/.pylintrc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/README.rst -------------------------------------------------------------------------------- /examples/hid/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/hid/device.py -------------------------------------------------------------------------------- /examples/kernel_mass_storage/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/kernel_mass_storage/device.py -------------------------------------------------------------------------------- /examples/kernel_ncm/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/kernel_ncm/device.py -------------------------------------------------------------------------------- /examples/kernel_sourcesink/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/kernel_sourcesink/device.py -------------------------------------------------------------------------------- /examples/usbcat/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/usbcat/device.py -------------------------------------------------------------------------------- /examples/usbcat/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/usbcat/host.py -------------------------------------------------------------------------------- /examples/usbcat/slowprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/examples/usbcat/slowprinter.py -------------------------------------------------------------------------------- /functionfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/__init__.py -------------------------------------------------------------------------------- /functionfs/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/_version.py -------------------------------------------------------------------------------- /functionfs/ch9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/ch9.py -------------------------------------------------------------------------------- /functionfs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/common.py -------------------------------------------------------------------------------- /functionfs/functionfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/functionfs.py -------------------------------------------------------------------------------- /functionfs/gadget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/gadget.py -------------------------------------------------------------------------------- /functionfs/hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/hid.py -------------------------------------------------------------------------------- /functionfs/tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/tests/README.rst -------------------------------------------------------------------------------- /functionfs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionfs/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/tests/common.py -------------------------------------------------------------------------------- /functionfs/tests/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/tests/device.py -------------------------------------------------------------------------------- /functionfs/tests/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/functionfs/tests/host.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpelletier/python-functionfs/HEAD/versioneer.py --------------------------------------------------------------------------------