diff options
| author | hathach <[email protected]> | 2018-12-05 08:47:23 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-12-05 08:47:23 +0700 |
| commit | dd9c7b4249618cb8113b0a37226bc6947818ecf0 (patch) | |
| tree | a2f3dcdef1337434a25bf0319e1668da6873a018 /examples/device/cdc_msc_hid/src | |
| parent | fe8346e642c369ad0e0b5bbf3a10d8e7d16a10fc (diff) | |
lpc40xx device work, moving Chip_USB_Init out of tinyusb
Diffstat (limited to 'examples/device/cdc_msc_hid/src')
| -rw-r--r-- | examples/device/cdc_msc_hid/src/tusb_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/device/cdc_msc_hid/src/tusb_config.h b/examples/device/cdc_msc_hid/src/tusb_config.h index a9a356f20..30bf05fab 100644 --- a/examples/device/cdc_msc_hid/src/tusb_config.h +++ b/examples/device/cdc_msc_hid/src/tusb_config.h @@ -99,9 +99,9 @@ // #define CFG_TUD_DESC_VID 0xCAFE // #define CFG_TUD_DESC_PID 0x0001 -// LPC175x_6x's endpoint type (bulk/interrupt/iso) are fixed by its number +// LPC 17xx and 40xx endpoint type (bulk/interrupt/iso) are fixed by its number // Therefor we need to force endpoint number to correct type on lpc17xx -#if CFG_TUSB_MCU == OPT_MCU_LPC175X_6X +#if CFG_TUSB_MCU == OPT_MCU_LPC175X_6X || CFG_TUSB_MCU == OPT_MCU_LPC177X_8X || CFG_TUSB_MCU == OPT_MCU_LPC40XX #define CFG_TUD_DESC_CDC_EPNUM_NOTIF 1 #define CFG_TUD_DESC_CDC_EPNUM 2 #define CFG_TUD_DESC_MSC_EPNUM 5 |
