diff options
| author | Zixun LI <[email protected]> | 2026-06-19 13:55:22 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-06-19 13:55:22 +0200 |
| commit | 36fa4b1536ca6bf4eb87d53329ed9343d33bcabc (patch) | |
| tree | 0eca8a7ef48b222be955355c8e503d58990bd879 /examples/device/midi2_device | |
| parent | 72b01d5a4b8127c15a5ea9729262ae5af6c8bc77 (diff) | |
| parent | 8c990885e304079e9e381f3899a53105c824624b (diff) | |
Merge pull request #3704 from rhgndf/fix-one-dir-examples
Fix one direction endpoint examples
Diffstat (limited to 'examples/device/midi2_device')
| -rw-r--r-- | examples/device/midi2_device/src/usb_descriptors.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/device/midi2_device/src/usb_descriptors.c b/examples/device/midi2_device/src/usb_descriptors.c index 19a43f2d8..f035f9c48 100644 --- a/examples/device/midi2_device/src/usb_descriptors.c +++ b/examples/device/midi2_device/src/usb_descriptors.c @@ -70,7 +70,11 @@ enum { // Endpoint addresses #define EPNUM_MIDI2_OUT 0x01 +#if CFG_TUD_ENDPOINT_ONE_DIRECTION_ONLY +#define EPNUM_MIDI2_IN 0x82 +#else #define EPNUM_MIDI2_IN 0x81 +#endif static uint8_t const desc_fs_configuration[] = { // Config number, interface count, string index, total length, attribute, power in mA |
