Skip to content

Commit 95dec2a

Browse files
committed
Fix case.
1 parent d4c7c98 commit 95dec2a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/device/audio_4_channel_mic/src/usb_descriptors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ enum
9696

9797
uint8_t const desc_configuration[] =
9898
{
99-
// Config number, Interface count, string index, total length, attribute, power in mA
99+
// Config number, interface count, string index, total length, attribute, power in mA
100100
TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100),
101101

102102
// Interface number, string index, EP Out & EP In address, EP size

examples/device/audio_test/src/usb_descriptors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ enum
9696

9797
uint8_t const desc_configuration[] =
9898
{
99-
// Config number, Interface count, string index, total length, attribute, power in mA
99+
// Config number, interface count, string index, total length, attribute, power in mA
100100
TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100),
101101

102102
// Interface number, string index, EP Out & EP In address, EP size

examples/device/audio_test_multi_rate/src/usb_descriptors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ enum
9898

9999
uint8_t const desc_configuration[] =
100100
{
101-
// Config number, Interface count, string index, total length, attribute, power in mA
101+
// Config number, interface count, string index, total length, attribute, power in mA
102102
TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100),
103103

104104
// Interface number, string index, EP Out & EP In address, EP size

examples/device/uac2_headset/src/usb_descriptors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ uint8_t const * tud_descriptor_device_cb(void)
106106

107107
uint8_t const desc_configuration[] =
108108
{
109-
// Config number, Interface count, string index, total length, attribute, power in mA
109+
// Config number, interface count, string index, total length, attribute, power in mA
110110
TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100),
111111

112112
// Interface number, string index, EP Out & EP In address, EP size

0 commit comments

Comments
 (0)