Files
luban-lite-t3e-pro/packages/third-party/cherryusb/common/usb_errno.h

26 lines
564 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
2025-01-08 19:12:06 +08:00
* Copyright (c) 2023-2024, sakumisu
2023-08-30 16:21:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*/
2024-01-27 08:47:24 +08:00
#ifndef USB_ERRNO_H
#define USB_ERRNO_H
#define USB_ERR_NOMEM 1
#define USB_ERR_INVAL 2
#define USB_ERR_NODEV 3
#define USB_ERR_NOTCONN 4
#define USB_ERR_NOTSUPP 5
#define USB_ERR_BUSY 6
#define USB_ERR_RANGE 7
#define USB_ERR_STALL 8
#define USB_ERR_BABBLE 9
#define USB_ERR_NAK 10
#define USB_ERR_DT 11
#define USB_ERR_IO 12
#define USB_ERR_SHUTDOWN 13
#define USB_ERR_TIMEOUT 14
2025-01-08 19:12:06 +08:00
#define USB_ERR_ALIGN 15
2024-01-27 08:47:24 +08:00
#endif /* USB_ERRNO_H */