This is a lib to use ChaNFS lib with USB mass storages like USB Sticks .. Long file names work

Dependencies:  

Dependents:   WeatherStation

Committer:
NeoBelerophon
Date:
Tue Feb 01 22:14:30 2011 +0000
Revision:
0:f0133ccac168
Initial commit

Who changed what in which revision?

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