rename TUSB_DIR_OUT, TUSB_DIR_IN

This commit is contained in:
hathach
2018-03-11 20:20:59 +07:00
parent ca13d59682
commit 26d81c3ea1
16 changed files with 52 additions and 52 deletions

View File

@@ -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;