
USBHostLite/usbhost_err.h@0:4359b47b3d7c, 2011-08-26 (annotated)
- Committer:
- slowness
- Date:
- Fri Aug 26 12:19:16 2011 +0000
- Revision:
- 0:4359b47b3d7c
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
slowness | 0:4359b47b3d7c | 1 | /* |
slowness | 0:4359b47b3d7c | 2 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 3 | * NXP USB Host Stack |
slowness | 0:4359b47b3d7c | 4 | * |
slowness | 0:4359b47b3d7c | 5 | * (c) Copyright 2008, NXP SemiConductors |
slowness | 0:4359b47b3d7c | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
slowness | 0:4359b47b3d7c | 7 | * All Rights Reserved |
slowness | 0:4359b47b3d7c | 8 | * |
slowness | 0:4359b47b3d7c | 9 | * www.nxp.com |
slowness | 0:4359b47b3d7c | 10 | * www.onchiptech.com |
slowness | 0:4359b47b3d7c | 11 | * |
slowness | 0:4359b47b3d7c | 12 | * File : usbhost_err.h |
slowness | 0:4359b47b3d7c | 13 | * Programmer(s) : Ravikanth.P |
slowness | 0:4359b47b3d7c | 14 | * Version : |
slowness | 0:4359b47b3d7c | 15 | * |
slowness | 0:4359b47b3d7c | 16 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 17 | */ |
slowness | 0:4359b47b3d7c | 18 | |
slowness | 0:4359b47b3d7c | 19 | #ifndef USBHOST_ERR_H |
slowness | 0:4359b47b3d7c | 20 | #define USBHOST_ERR_H |
slowness | 0:4359b47b3d7c | 21 | |
slowness | 0:4359b47b3d7c | 22 | |
slowness | 0:4359b47b3d7c | 23 | /* |
slowness | 0:4359b47b3d7c | 24 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 25 | * GENERAL DEFINITIONS |
slowness | 0:4359b47b3d7c | 26 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 27 | */ |
slowness | 0:4359b47b3d7c | 28 | |
slowness | 0:4359b47b3d7c | 29 | #define OK 0 |
slowness | 0:4359b47b3d7c | 30 | #define MATCH_FOUND 0 |
slowness | 0:4359b47b3d7c | 31 | |
slowness | 0:4359b47b3d7c | 32 | /* |
slowness | 0:4359b47b3d7c | 33 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 34 | * HOST CONTROLLER SPECIFIC ERROR CODES |
slowness | 0:4359b47b3d7c | 35 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 36 | */ |
slowness | 0:4359b47b3d7c | 37 | |
slowness | 0:4359b47b3d7c | 38 | #define ERR_TD_FAIL -1 |
slowness | 0:4359b47b3d7c | 39 | |
slowness | 0:4359b47b3d7c | 40 | /* |
slowness | 0:4359b47b3d7c | 41 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 42 | * MASS STORAGE SPECIFIC ERROR CODES |
slowness | 0:4359b47b3d7c | 43 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 44 | */ |
slowness | 0:4359b47b3d7c | 45 | |
slowness | 0:4359b47b3d7c | 46 | #define ERR_MS_CMD_FAILED -10 |
slowness | 0:4359b47b3d7c | 47 | #define ERR_BAD_CONFIGURATION -11 |
slowness | 0:4359b47b3d7c | 48 | #define ERR_NO_MS_INTERFACE -12 |
slowness | 0:4359b47b3d7c | 49 | |
slowness | 0:4359b47b3d7c | 50 | /* |
slowness | 0:4359b47b3d7c | 51 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 52 | * FAT SPECIFIC ERROR CODES |
slowness | 0:4359b47b3d7c | 53 | ************************************************************************************************************** |
slowness | 0:4359b47b3d7c | 54 | */ |
slowness | 0:4359b47b3d7c | 55 | |
slowness | 0:4359b47b3d7c | 56 | #define MATCH_NOT_FOUND -20 |
slowness | 0:4359b47b3d7c | 57 | #define ERR_FAT_NOT_SUPPORTED -21 |
slowness | 0:4359b47b3d7c | 58 | #define ERR_OPEN_LIMIT_REACHED -22 |
slowness | 0:4359b47b3d7c | 59 | #define ERR_INVALID_BOOT_SIG -23 |
slowness | 0:4359b47b3d7c | 60 | #define ERR_INVALID_BOOT_SEC -24 |
slowness | 0:4359b47b3d7c | 61 | #define ERR_ROOT_DIR_FULL -25 |
slowness | 0:4359b47b3d7c | 62 | |
slowness | 0:4359b47b3d7c | 63 | #endif |