Skip to content

Commit 631d192

Browse files
authored
Merge pull request #378 from tlyu/override-tud-cfg
allow override of TUD interface counts
2 parents f755225 + 8ee7989 commit 631d192

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

src/arduino/ports/nrf/tusb_config_nrf.h

+15-1
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,27 @@ extern "C" {
6666
#define CFG_TUD_ENDPOINT0_SIZE 64
6767

6868
//------------- CLASS -------------//
69+
#ifndef CFG_TUD_CDC
6970
#define CFG_TUD_CDC 1
71+
#endif
72+
#ifndef CFG_TUD_MSC
7073
#define CFG_TUD_MSC 1
74+
#endif
75+
#ifndef CFG_TUD_HID
7176
#define CFG_TUD_HID 2
77+
#endif
78+
#ifndef CFG_TUD_MIDI
7279
#define CFG_TUD_MIDI 1
80+
#endif
81+
#ifndef CFG_TUD_VENDOR
7382
#define CFG_TUD_VENDOR 1
74-
#define CFG_TUD_VIDEO 1 // number of video control interfaces
83+
#endif
84+
#ifndef CFG_TUD_VIDEO
85+
#define CFG_TUD_VIDEO 1 // number of video control interfaces
86+
#endif
87+
#ifndef CFG_TUD_VIDEO_STREAMING
7588
#define CFG_TUD_VIDEO_STREAMING 1 // number of video streaming interfaces
89+
#endif
7690

7791
// video streaming endpoint buffer size
7892
#define CFG_TUD_VIDEO_STREAMING_EP_BUFSIZE 256

src/arduino/ports/rp2040/tusb_config_rp2040.h

+15-1
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,27 @@ extern "C" {
8181

8282
#define CFG_TUD_ENDPOINT0_SIZE 64
8383

84+
#ifndef CFG_TUD_CDC
8485
#define CFG_TUD_CDC 1
86+
#endif
87+
#ifndef CFG_TUD_MSC
8588
#define CFG_TUD_MSC 1
89+
#endif
90+
#ifndef CFG_TUD_HID
8691
#define CFG_TUD_HID 2
92+
#endif
93+
#ifndef CFG_TUD_MIDI
8794
#define CFG_TUD_MIDI 1
95+
#endif
96+
#ifndef CFG_TUD_VENDOR
8897
#define CFG_TUD_VENDOR 1
89-
#define CFG_TUD_VIDEO 1 // number of video control interfaces
98+
#endif
99+
#ifndef CFG_TUD_VIDEO
100+
#define CFG_TUD_VIDEO 1 // number of video control interfaces
101+
#endif
102+
#ifndef CFG_TUD_VIDEO_STREAMING
90103
#define CFG_TUD_VIDEO_STREAMING 1 // number of video streaming interfaces
104+
#endif
91105

92106
// video streaming endpoint buffer size
93107
#define CFG_TUD_VIDEO_STREAMING_EP_BUFSIZE 256

src/arduino/ports/samd/tusb_config_samd.h

+15-1
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,27 @@ extern "C" {
6767
#define CFG_TUD_ENDPOINT0_SIZE 64
6868

6969
//------------- CLASS -------------//
70+
#ifndef CFG_TUD_CDC
7071
#define CFG_TUD_CDC 1
72+
#endif
73+
#ifndef CFG_TUD_MSC
7174
#define CFG_TUD_MSC 1
75+
#endif
76+
#ifndef CFG_TUD_HID
7277
#define CFG_TUD_HID 2
78+
#endif
79+
#ifndef CFG_TUD_MIDI
7380
#define CFG_TUD_MIDI 1
81+
#endif
82+
#ifndef CFG_TUD_VENDOR
7483
#define CFG_TUD_VENDOR 1
75-
#define CFG_TUD_VIDEO 1 // number of video control interfaces
84+
#endif
85+
#ifndef CFG_TUD_VIDEO
86+
#define CFG_TUD_VIDEO 1 // number of video control interfaces
87+
#endif
88+
#ifndef CFG_TUD_VIDEO_STREAMING
7689
#define CFG_TUD_VIDEO_STREAMING 1 // number of video streaming interfaces
90+
#endif
7791

7892
// video streaming endpoint buffer size
7993
#define CFG_TUD_VIDEO_STREAMING_EP_BUFSIZE 256

0 commit comments

Comments
 (0)