24 lines
317 B
C
24 lines
317 B
C
#ifndef TUSB_CONFIG_H
|
|
#define TUSB_CONFIG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define CFG_TUD_ENABLED 1
|
|
|
|
#define CFG_TUD_CDC 0
|
|
#define CFG_TUD_MSC 0
|
|
#define CFG_TUD_HDI 0
|
|
#define CFG_TUD_MIDI 0
|
|
#define CFG_TUD_VENDOR 1
|
|
|
|
#define CFG_TUD_VENDOR_RX_BUFSIZE 0
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TUSB_CONFIG_H
|