aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/ManPages
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-26 11:16:20 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-26 11:16:20 +0000
commit2a28862dcc6a8e5fcf7c8015f67b3eee4716fef6 (patch)
tree765119640ff4b015072c4b7a778d1aef06a816f3 /LUFA/ManPages
parentf6de4db0009244baef4e961cd0cb6520e78edba0 (diff)
downloadlufa-2a28862dcc6a8e5fcf7c8015f67b3eee4716fef6.tar.gz
lufa-2a28862dcc6a8e5fcf7c8015f67b3eee4716fef6.tar.bz2
lufa-2a28862dcc6a8e5fcf7c8015f67b3eee4716fef6.zip
Make MIDI device demos also turn off the on board LEDs if MIDI Note On messages are sent with a velocity of zero, which some devices use instead of Note Off messages (thanks to Robin Green).
Diffstat (limited to 'LUFA/ManPages')
-rw-r--r--LUFA/ManPages/ChangeLog.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt
index d06d91399..8f7a410ff 100644
--- a/LUFA/ManPages/ChangeLog.txt
+++ b/LUFA/ManPages/ChangeLog.txt
@@ -27,7 +27,9 @@
* - All Class Drivers now return false or the "DeviceDisconnected" error code of their respective error enums when a function
* is called when no host/device is connected where possible
* - The HOST_SENDCONTROL_DeviceDisconnect enum value has been renamed to HOST_SENDCONTROL_DeviceDisconnected to be in line
- * with the rest of the library errorcodes.
+ * with the rest of the library errorcodes
+ * - Make MIDI device demos also turn off the on board LEDs if MIDI Note On messages are sent with a velocity of zero,
+ * which some devices use instead of Note Off messages (thanks to Robin Green)
*
* <b>Fixed:</b>
* - Added missing CDC_Host_CreateBlockingStream() function code to the CDC Host Class driver