Removed mostly useless "TestApp" demo, as it was mainly useful only for checking for sytax errors in the library.
MIDI device demos now receive MIDI events from the host and display note ON messages via the board LEDs. Added beginnings of a MIDI class bootloader.
This commit is contained in:
parent
059ebd01a3
commit
89c837ee34
18 changed files with 3437 additions and 11 deletions
|
@ -126,6 +126,8 @@ uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo
|
|||
}
|
||||
}
|
||||
|
||||
CDCInterfaceInfo->State.ControlLineStates.HostToDevice = (CDC_CONTROL_LINE_OUT_RTS | CDC_CONTROL_LINE_OUT_DTR);
|
||||
CDCInterfaceInfo->State.ControlLineStates.DeviceToHost = (CDC_CONTROL_LINE_IN_DCD | CDC_CONTROL_LINE_IN_DSR);
|
||||
CDCInterfaceInfo->State.IsActive = true;
|
||||
return CDC_ENUMERROR_NoError;
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@
|
|||
*/
|
||||
#define PIPE_TOKEN_IN (1 << PTOKEN0)
|
||||
|
||||
/** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a IN token (for non-CONTROL type pipes),
|
||||
/** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a OUT token (for non-CONTROL type pipes),
|
||||
* indicating that the pipe data will flow from host to device.
|
||||
*/
|
||||
#define PIPE_TOKEN_OUT (2 << PTOKEN0)
|
||||
|
|
|
@ -9,9 +9,11 @@
|
|||
* \section Sec_ChangeLogXXXXXX Version XXXXXX
|
||||
*
|
||||
* <b>New:</b>
|
||||
* - Removed useless "TestApp" demo, added new Dual Role Keyboard/Mouse demo
|
||||
* - Added new Dual Role Keyboard/Mouse demo
|
||||
*
|
||||
* <b>Changed:</b>
|
||||
* - Removed mostly useless "TestApp" demo, as it was mainly useful only for checking for sytax errors in the library
|
||||
* - MIDI device demos now receive MIDI events from the host and display note ON messages via the board LEDs
|
||||
*
|
||||
* <b>Fixed:</b>
|
||||
* - Fixed PrinterHost demo returning invalid Device ID data when the attached device does not have a
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* - Abstract out the physical media from the Mass Storage device demos
|
||||
* - Make new demos
|
||||
* -# Multiple-report HID device
|
||||
* -# Dual Role Mouse Host/Keyboard Device
|
||||
* -# Mouse/CDC Dual ClassDevice
|
||||
* -# Mouse/CDC Dual Class Device
|
||||
* -# MIDI Host class driver and demo
|
||||
* - Port LUFA to other architectures
|
||||
* -# AVR32 UC3B series microcontrollers
|
||||
* -# Atmel ARM7 series microcontrollers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue