mbed Dev board test program

Dependencies:   EthernetNetIf mbed HTTPServer SerialLCD

Committer:
pangsk
Date:
Mon Jul 11 15:02:04 2011 +0000
Revision:
0:0f36b9fac4c5

        

Who changed what in which revision?

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