as

Dependencies:   C12832 CMPS03 FatFileSystemCpp mbed

Committer:
JWitherstone
Date:
Wed May 07 10:15:01 2014 +0000
Revision:
0:6cf24371ad4f
this is compass;

Who changed what in which revision?

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