diff options
| author | hathach <[email protected]> | 2024-10-29 18:23:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-10-29 18:23:56 +0700 |
| commit | df55d587dfe8b24d72eb20cd027cd54821d0bf09 (patch) | |
| tree | f125ff053888378cc7d485bc4e444ec97e5ef72d /src/common/tusb_types.h | |
| parent | 1e164412bf791cb682c386f9d1e8e3b806faf72a (diff) | |
update handle in/out, separate allocated and xfer result to make it easier to manage. Fix channel disable/deallocated.
Diffstat (limited to 'src/common/tusb_types.h')
| -rw-r--r-- | src/common/tusb_types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/tusb_types.h b/src/common/tusb_types.h index 3e5aa6818..92cebc42b 100644 --- a/src/common/tusb_types.h +++ b/src/common/tusb_types.h @@ -224,10 +224,10 @@ enum { // USB 2.0 Spec Table 9-7: Test Mode Selectors typedef enum { TUSB_FEATURE_TEST_J = 1, - TUSB_FEATURE_TEST_K, - TUSB_FEATURE_TEST_SE0_NAK, - TUSB_FEATURE_TEST_PACKET, - TUSB_FEATURE_TEST_FORCE_ENABLE, + TUSB_FEATURE_TEST_K = 2, + TUSB_FEATURE_TEST_SE0_NAK = 3, + TUSB_FEATURE_TEST_PACKET = 4, + TUSB_FEATURE_TEST_FORCE_ENABLE = 5, } tusb_feature_test_mode_t; //--------------------------------------------------------------------+ |
