diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-27 06:32:26 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-27 06:32:26 +0000 |
commit | 958d28d05dcf29530cc552ba75b53fc41bd89c7e (patch) | |
tree | 3f4e053071b9b7c1fcc82c41b5a4f63589a3aa4c /LUFA | |
parent | e5057fec8ead1ec52dbad3b128ed94f9895fc9f4 (diff) | |
download | lufa-958d28d05dcf29530cc552ba75b53fc41bd89c7e.tar.gz lufa-958d28d05dcf29530cc552ba75b53fc41bd89c7e.tar.bz2 lufa-958d28d05dcf29530cc552ba75b53fc41bd89c7e.zip |
Better checking of whether a packet is received in the RNDISEthernetHost Class driver demo - show busy LED status while packets are being printed out.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Drivers/USB/USB.h | 8 | ||||
-rw-r--r-- | LUFA/ManPages/FutureChanges.txt | 3 |
2 files changed, 4 insertions, 7 deletions
diff --git a/LUFA/Drivers/USB/USB.h b/LUFA/Drivers/USB/USB.h index f1d7d5be5..b40d6ab44 100644 --- a/LUFA/Drivers/USB/USB.h +++ b/LUFA/Drivers/USB/USB.h @@ -83,8 +83,8 @@ * <table>
* <tr>
* <th width="100px">USB Class</th>
- * <th width="80px">Device</th>
- * <th width="80px">Host</th>
+ * <th width="90px">Device Mode</th>
+ * <th width="90px">Host Mode</th>
* </tr>
* <tr>
* <td>Audio</td>
@@ -113,13 +113,13 @@ * </tr>
* <tr>
* <td>Printer</td>
- * <td bgcolor="#00EE00">No</td>
+ * <td bgcolor="#EE0000">No</td>
* <td bgcolor="#00EE00">Yes</td>
* </tr>
* <tr>
* <td>RNDIS</td>
* <td bgcolor="#00EE00">Yes</td>
- * <td bgcolor="#EE0000">Yes</td>
+ * <td bgcolor="#00EE00">Yes</td>
* </tr>
* <tr>
* <td>Still Image</td>
diff --git a/LUFA/ManPages/FutureChanges.txt b/LUFA/ManPages/FutureChanges.txt index 112c98020..12e972cf4 100644 --- a/LUFA/ManPages/FutureChanges.txt +++ b/LUFA/ManPages/FutureChanges.txt @@ -11,14 +11,11 @@ * If you have an item to add to this list, please contact the library author via email, the LUFA mailing list,
* or post your suggestion as an enhancement request to the project bug tracker.
*
- * <b>Targeted for the Next Release (SVN Development Only):</b>
- *
* <b>Targeted for Future Releases:</b>
* - Code Features
* -# Add hub support when in Host mode for multiple devices
* -# Add ability to get number of bytes not written with pipe/endpoint write routines after an error
* -# Add standardized descriptor names to class driver structures
- * -# Finish RNDIS Host Class driver
* -# Correct mishandling of error cases in Mass Storage demos
* - Documentation/Support
* -# Remake AVRStudio project files
|