Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/wedo_plugin/usb/ReleaseNotes.rst
blob: 53c7d96cefcf7179a914b7367b087331a16d40f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
==========
PyUSB News
==========

What's new in PyUSB 1.0.0 (beta 1)?
===================================

- Isochronous transfer for libusb 1.0 (by David Halter).
- Experimental OpenUSB support.
- Documentation update.
- ``PYUSB_DEBUG_LEVEL`` environment variable is now called ``PYUSB_DEBUG``.
- Legacy module nwo groups according to their *bus*.
- Version information available for apps (by Chris Clark).
- Faster read operation (by themperek).
- Tox support (by ponty).
- Support for port number info (by Stefano Di Martino).
- Several bug fixes (please, check the Changelog file).

Known issues
============

- OpenUSB backend hangs on some control transfers.

TODO
====

- More tests with legacy module.
- Isochronous transfers for libusb-win32.

What's new in PyUSB 1.0.0 (alpha 3)?
====================================

**WARNING**: this release renames the libusb 1.0 and libusb 0.1 backends. If
your code makes direct access to this backends, you will have to change it.

- Fixed several legacy module bugs (by Tormod Volden).
- Fixed libusb0 backend for BSDs and Mac OSX.
- Fixed data loss when less the requested number of bytes were read (by
  Braiden Kindt).
- Documentation fixes.

What's new in PyUSB 1.0.0 (alpha 2)?
====================================

- Test firmware now lives in its own respository (https://github.com/walac/bmfw).
- ``USBError`` now has the property ``backend_error_code`` that tells the
  backend specific error.
- ``errno`` value in ``USBError`` is translated according to the backend error.
- Now ``Device`` class has the ``bus`` and ``address`` attributes to
  differentiate identical devices.
- Optimization when log is disabled (by Emmanuel Blot).
- Several other minor fixes and improvaments (check ChangeLog file).

Features not implemented
------------------------

- OpenUSB support.
- Isochronous transfer.

What's new in PyUSB 1.0.0 (alpha 1)?
====================================

This release implements more PyUSB 1.0 features towards beta stage. The new
features implemented include:

- Standard control requests through usb.control module.
- Request current configuration from device when you do not call
  set_configuration.
- get_string function in the usb.util module to get string descriptors.
- Full 0.4 API emulation.
- Device is not reset anymore in test cases to avoid problems in systems
  where it does not work.

Features not implemented
------------------------

- OpenUSB support.
- Isochronous transfer.

What's new in PyUSB 1.0.0 (alpha 0)?
====================================

This is the first PyUSB 1.0 series public release. This is an alpha release, which
means that most of the features described in the README file and on the website are
not yet stable or even implemented.

Features not implemented
------------------------

- Full support for legacy 0.4 legacy code (although partial support is provided).
- OpenUSB backend.
- libusb 1.0 windows backend stability (although it is reasonable usable).
- Support for several standard control requests (including GET_STRING).
- Python < 2.6 and Python 3 not yet fully tested.

Known issues
------------

- ``reset`` method fails under FreeUSB (libusb 1.0 backend).
- ``reset`` method hangs under Windows (libusb 1.0 backend).
- Sometimes occurs `read` timeout on Windows (libusb 1.0 backend).
- Test cases fail to run under cygwin.