25 lines
458 B
C
25 lines
458 B
C
#ifndef _TUSB_CONFIG_H_
|
|
#define _TUSB_CONFIG_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define CFG_TUD_ENABLED 1
|
|
#define CFG_TUSB_OS OPT_OS_FREERTOS
|
|
#define CFG_TUD_ENDPOINT0_SIZE 64
|
|
|
|
#define CFG_TUD_HID 2
|
|
#define CFG_TUD_HID_EP_BUFSIZE 64
|
|
|
|
#define CFG_TUD_CDC 0
|
|
#define CFG_TUD_MSC 0
|
|
#define CFG_TUD_MIDI 0
|
|
#define CFG_TUD_VENDOR 0
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _TUSB_CONFIG_H_ */
|