Simple USBHost MSD(USB flash drive) for EA LPC4088 QSB test program

Dependencies:   LPC4088-USBHost mbed

EA LPC4088をUSBホストにしてUSBフラッシュメモリ(USB flash drive)を読み書きするテストプログラムです。
/media/uploads/va009039/lpc4088-msd-1.jpg
/media/uploads/va009039/lpc4088-msd-2.png

https://bitbucket.org/va009039/lpc4088_usbhost

Committer:
va009039
Date:
Tue Apr 22 10:54:52 2014 +0000
Revision:
0:11152e69fc05
first commit,sync rev.25.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:11152e69fc05 1 /* mbed USBHost Library
va009039 0:11152e69fc05 2 * Copyright (c) 2006-2013 ARM Limited
va009039 0:11152e69fc05 3 *
va009039 0:11152e69fc05 4 * Licensed under the Apache License, Version 2.0 (the "License");
va009039 0:11152e69fc05 5 * you may not use this file except in compliance with the License.
va009039 0:11152e69fc05 6 * You may obtain a copy of the License at
va009039 0:11152e69fc05 7 *
va009039 0:11152e69fc05 8 * http://www.apache.org/licenses/LICENSE-2.0
va009039 0:11152e69fc05 9 *
va009039 0:11152e69fc05 10 * Unless required by applicable law or agreed to in writing, software
va009039 0:11152e69fc05 11 * distributed under the License is distributed on an "AS IS" BASIS,
va009039 0:11152e69fc05 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
va009039 0:11152e69fc05 13 * See the License for the specific language governing permissions and
va009039 0:11152e69fc05 14 * limitations under the License.
va009039 0:11152e69fc05 15 */
va009039 0:11152e69fc05 16
va009039 0:11152e69fc05 17 #ifndef USB_DEBUG_H
va009039 0:11152e69fc05 18 #define USB_DEBUG_H
va009039 0:11152e69fc05 19
va009039 0:11152e69fc05 20 //Debug is disabled by default
va009039 0:11152e69fc05 21 #ifndef DEBUG
va009039 0:11152e69fc05 22 #define DEBUG 3 /*INFO,ERR,WARN*/
va009039 0:11152e69fc05 23 #endif
va009039 0:11152e69fc05 24 #ifndef DEBUG2
va009039 0:11152e69fc05 25 #define DEBUG2 0
va009039 0:11152e69fc05 26 #endif
va009039 0:11152e69fc05 27 #define DEBUG_TRANSFER 0
va009039 0:11152e69fc05 28 #define DEBUG_EP_STATE 0
va009039 0:11152e69fc05 29 #define DEBUG_EVENT 0
va009039 0:11152e69fc05 30
va009039 0:11152e69fc05 31 #if (DEBUG > 3)
va009039 0:11152e69fc05 32 #define USB_DBG(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);fprintf(stderr,"\r\n");} while(0);
va009039 0:11152e69fc05 33 //#define USB_DBG(x, ...) std::printf("[USB_DBG: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 34 #define USB_DBG_HEX(A,B) debug_hex(A,B)
va009039 0:11152e69fc05 35 extern void debug_hex(uint8_t* buf, int size);
va009039 0:11152e69fc05 36 #define USB_DBG_ERRSTAT() report.print_errstat();
va009039 0:11152e69fc05 37 #else
va009039 0:11152e69fc05 38 #define USB_DBG(x, ...)
va009039 0:11152e69fc05 39 #define USB_DBG_HEX(A,B) while(0)
va009039 0:11152e69fc05 40 #define USB_DBG_ERRSTAT() while(0)
va009039 0:11152e69fc05 41 #endif
va009039 0:11152e69fc05 42
va009039 0:11152e69fc05 43 #if (DEBUG2 > 3)
va009039 0:11152e69fc05 44 #define USB_DBG2(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);fprintf(stderr,"\r\n");} while(0);
va009039 0:11152e69fc05 45 #else
va009039 0:11152e69fc05 46 #define USB_DBG2(...) while(0);
va009039 0:11152e69fc05 47 #endif
va009039 0:11152e69fc05 48
va009039 0:11152e69fc05 49 #if (DEBUG > 2)
va009039 0:11152e69fc05 50 #define USB_INFO(...) do{fprintf(stderr,__VA_ARGS__);fprintf(stderr,"\r\n");}while(0);
va009039 0:11152e69fc05 51 //#define USB_INFO(x, ...) std::printf("[USB_INFO: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 52 #else
va009039 0:11152e69fc05 53 #define USB_INFO(x, ...)
va009039 0:11152e69fc05 54 #endif
va009039 0:11152e69fc05 55
va009039 0:11152e69fc05 56 #if (DEBUG > 1)
va009039 0:11152e69fc05 57 #define USB_WARN(x, ...) std::printf("[USB_WARNING: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 58 #else
va009039 0:11152e69fc05 59 #define USB_WARN(x, ...)
va009039 0:11152e69fc05 60 #endif
va009039 0:11152e69fc05 61
va009039 0:11152e69fc05 62 #if (DEBUG > 0)
va009039 0:11152e69fc05 63 #define USB_ERR(x, ...) std::printf("[USB_ERR: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 64 #else
va009039 0:11152e69fc05 65 #define USB_ERR(x, ...)
va009039 0:11152e69fc05 66 #endif
va009039 0:11152e69fc05 67
va009039 0:11152e69fc05 68 #if (DEBUG_TRANSFER)
va009039 0:11152e69fc05 69 #define USB_DBG_TRANSFER(x, ...) std::printf("[USB_TRANSFER: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 70 #else
va009039 0:11152e69fc05 71 #define USB_DBG_TRANSFER(x, ...)
va009039 0:11152e69fc05 72 #endif
va009039 0:11152e69fc05 73
va009039 0:11152e69fc05 74 #if (DEBUG_EVENT)
va009039 0:11152e69fc05 75 #define USB_DBG_EVENT(x, ...) std::printf("[USB_EVENT: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
va009039 0:11152e69fc05 76 #else
va009039 0:11152e69fc05 77 #define USB_DBG_EVENT(x, ...)
va009039 0:11152e69fc05 78 #endif
va009039 0:11152e69fc05 79
va009039 0:11152e69fc05 80 template <bool>struct CtAssert;
va009039 0:11152e69fc05 81 template <>struct CtAssert<true> {};
va009039 0:11152e69fc05 82 #define CTASSERT(A) CtAssert<A>();
va009039 0:11152e69fc05 83
va009039 0:11152e69fc05 84 #ifdef _USB_TEST
va009039 0:11152e69fc05 85 #define USB_TEST_ASSERT(A) while(!(A)){fprintf(stderr,"\n\n%s@%d %s ASSERT!\n\n",__PRETTY_FUNCTION__,__LINE__,#A);exit(1);};
va009039 0:11152e69fc05 86 #define USB_TEST_ASSERT_FALSE(A) USB_TEST_ASSERT(!(A))
va009039 0:11152e69fc05 87 #else
va009039 0:11152e69fc05 88 #define USB_TEST_ASSERT(A) while(0)
va009039 0:11152e69fc05 89 #define USB_TEST_ASSERT_FALSE(A) while(0)
va009039 0:11152e69fc05 90 #endif
va009039 0:11152e69fc05 91
va009039 0:11152e69fc05 92 #endif
va009039 0:11152e69fc05 93