diff options
| author | hathach <[email protected]> | 2018-03-11 20:20:59 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-11 20:20:59 +0700 |
| commit | 26d81c3ea16809bfed6fd9e93e9b2d93696c6264 (patch) | |
| tree | fe17973b51a21af4be7ef4e30132fe871d1ac3c1 /tinyusb/common | |
| parent | ca13d59682e6a9327528dde230e6725c48fb305b (diff) | |
rename TUSB_DIR_OUT, TUSB_DIR_IN
Diffstat (limited to 'tinyusb/common')
| -rw-r--r-- | tinyusb/common/tusb_types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tinyusb/common/tusb_types.h b/tinyusb/common/tusb_types.h index 08f49ebe6..cec9fa52c 100644 --- a/tinyusb/common/tusb_types.h +++ b/tinyusb/common/tusb_types.h @@ -66,10 +66,10 @@ typedef enum typedef enum
{
- TUSB_DIR_HOST_TO_DEV = 0,
- TUSB_DIR_DEV_TO_HOST = 1,
+ TUSB_DIR_OUT = 0,
+ TUSB_DIR_IN = 1,
- TUSB_DIR_DEV_TO_HOST_MASK = 0x80
+ TUSB_DIR_IN_MASK = 0x80
}tusb_dir_t;
|
