diff options
| author | Ha Thach <[email protected]> | 2020-04-01 00:05:11 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-01 00:05:11 +0700 |
| commit | 7a32ee58f3eb64b93a958462be40e4e1e4c0e16c (patch) | |
| tree | 061b0eea262c20b200234701aaa36d50dd8e9864 /src/device | |
| parent | 370dd1839465e71caa3024f6f2347b701a94953d (diff) | |
| parent | 794212d44e38a05d8b747e43942595d214ee5b0b (diff) | |
Merge pull request #318 from majbthrd/confignum
add provision for multiple configurations
Diffstat (limited to 'src/device')
| -rw-r--r-- | src/device/usbd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/device/usbd.h b/src/device/usbd.h index 07163a013..beeec7e1c 100644 --- a/src/device/usbd.h +++ b/src/device/usbd.h @@ -156,9 +156,9 @@ TU_ATTR_WEAK bool tud_vendor_control_complete_cb(uint8_t rhport, tusb_control_re //------------- Configuration -------------// #define TUD_CONFIG_DESC_LEN (9) -// Interface count, string index, total length, attribute, power in mA -#define TUD_CONFIG_DESCRIPTOR(_itfcount, _stridx, _total_len, _attribute, _power_ma) \ - 9, TUSB_DESC_CONFIGURATION, U16_TO_U8S_LE(_total_len), _itfcount, 1, _stridx, TU_BIT(7) | _attribute, (_power_ma)/2 +// Config number, interface count, string index, total length, attribute, power in mA +#define TUD_CONFIG_DESCRIPTOR(config_num, _itfcount, _stridx, _total_len, _attribute, _power_ma) \ + 9, TUSB_DESC_CONFIGURATION, U16_TO_U8S_LE(_total_len), _itfcount, config_num, _stridx, TU_BIT(7) | _attribute, (_power_ma)/2 //------------- CDC -------------// |
