aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorChristopher <github@phogy.com>2019-11-05 01:02:42 +0100
committerJoel Challis <git@zvecr.com>2019-11-05 00:02:42 +0000
commit0a9a69394e132c3d00eddffd2e345f48113e56c4 (patch)
tree4aef744c9cbbc66035239dcddd6200941a4dad4c /tmk_core/protocol
parent31fe2e085902b80c0cc89fbce3d592e1db041530 (diff)
downloadfirmware-0a9a69394e132c3d00eddffd2e345f48113e56c4.tar.gz
firmware-0a9a69394e132c3d00eddffd2e345f48113e56c4.tar.bz2
firmware-0a9a69394e132c3d00eddffd2e345f48113e56c4.zip
Fixes #7256: USB descriptor to identify correctly as MIDI device. (#7258)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/usb_descriptor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c
index ffcf0957f..e93ce87df 100644
--- a/tmk_core/protocol/usb_descriptor.c
+++ b/tmk_core/protocol/usb_descriptor.c
@@ -431,7 +431,7 @@ const USB_Descriptor_Configuration_t PROGMEM
.Refresh = 0,
.SyncEndpointNumber = 0},
- .MIDI_In_Jack_Endpoint_SPC = {.Header = {.Size = sizeof(USB_MIDI_Descriptor_Jack_Endpoint_t), .Type = AUDIO_DSUBTYPE_CSEndpoint_General}, .Subtype = AUDIO_DSUBTYPE_CSEndpoint_General, .TotalEmbeddedJacks = 0x01, .AssociatedJackID = {0x01}},
+ .MIDI_In_Jack_Endpoint_SPC = {.Header = {.Size = sizeof(USB_MIDI_Descriptor_Jack_Endpoint_t), .Type = AUDIO_DTYPE_CSEndpoint}, .Subtype = AUDIO_DSUBTYPE_CSEndpoint_General, .TotalEmbeddedJacks = 0x01, .AssociatedJackID = {0x01}},
.MIDI_Out_Jack_Endpoint = {.Endpoint = {.Header = {.Size = sizeof(USB_Audio_Descriptor_StreamEndpoint_Std_t), .Type = DTYPE_Endpoint}, .EndpointAddress = MIDI_STREAM_IN_EPADDR, .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), .EndpointSize = MIDI_STREAM_EPSIZE, .PollingIntervalMS = 0x05},
.Refresh = 0,