2018.07.26

Dependencies:   FATFileSystem3 mbed-rtos

Fork of USBHost by mbed official

Committer:
sayzyas
Date:
Thu Jul 26 04:20:29 2018 +0000
Revision:
44:ef52682c423e
Parent:
43:1675750cca08
2018.07.26;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sayzyas 43:1675750cca08 1 /* mbed USBHost Library
sayzyas 43:1675750cca08 2 * Copyright (c) 2006-2013 ARM Limited
sayzyas 43:1675750cca08 3 *
sayzyas 43:1675750cca08 4 * Licensed under the Apache License, Version 2.0 (the "License");
sayzyas 43:1675750cca08 5 * you may not use this file except in compliance with the License.
sayzyas 43:1675750cca08 6 * You may obtain a copy of the License at
sayzyas 43:1675750cca08 7 *
sayzyas 43:1675750cca08 8 * http://www.apache.org/licenses/LICENSE-2.0
sayzyas 43:1675750cca08 9 *
sayzyas 43:1675750cca08 10 * Unless required by applicable law or agreed to in writing, software
sayzyas 43:1675750cca08 11 * distributed under the License is distributed on an "AS IS" BASIS,
sayzyas 43:1675750cca08 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
sayzyas 43:1675750cca08 13 * See the License for the specific language governing permissions and
sayzyas 43:1675750cca08 14 * limitations under the License.
sayzyas 43:1675750cca08 15 */
sayzyas 43:1675750cca08 16
sayzyas 43:1675750cca08 17 #ifndef USB_DEBUG_H
sayzyas 43:1675750cca08 18 #define USB_DEBUG_H
sayzyas 43:1675750cca08 19
sayzyas 43:1675750cca08 20 //Debug is disabled by default
sayzyas 43:1675750cca08 21 #define DEBUG 3 /*INFO,ERR,WARN*/
sayzyas 43:1675750cca08 22 #define DEBUG_TRANSFER 0
sayzyas 43:1675750cca08 23 #define DEBUG_EP_STATE 0
sayzyas 43:1675750cca08 24 #define DEBUG_EVENT 0
sayzyas 43:1675750cca08 25
sayzyas 43:1675750cca08 26 #if (DEBUG > 3)
sayzyas 43:1675750cca08 27 #define USB_DBG(x, ...) std::printf("[USB_DBG: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 28 #else
sayzyas 43:1675750cca08 29 #define USB_DBG(x, ...)
sayzyas 43:1675750cca08 30 #endif
sayzyas 43:1675750cca08 31
sayzyas 43:1675750cca08 32 #if (DEBUG > 2)
sayzyas 43:1675750cca08 33 #define USB_INFO(x, ...) std::printf("[USB_INFO: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 34 #else
sayzyas 43:1675750cca08 35 #define USB_INFO(x, ...)
sayzyas 43:1675750cca08 36 #endif
sayzyas 43:1675750cca08 37
sayzyas 43:1675750cca08 38 #if (DEBUG > 1)
sayzyas 43:1675750cca08 39 #define USB_WARN(x, ...) std::printf("[USB_WARNING: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 40 #else
sayzyas 43:1675750cca08 41 #define USB_WARN(x, ...)
sayzyas 43:1675750cca08 42 #endif
sayzyas 43:1675750cca08 43
sayzyas 43:1675750cca08 44 #if (DEBUG > 0)
sayzyas 43:1675750cca08 45 #define USB_ERR(x, ...) std::printf("[USB_ERR: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 46 #else
sayzyas 43:1675750cca08 47 #define USB_ERR(x, ...)
sayzyas 43:1675750cca08 48 #endif
sayzyas 43:1675750cca08 49
sayzyas 43:1675750cca08 50 #if (DEBUG_TRANSFER)
sayzyas 43:1675750cca08 51 #define USB_DBG_TRANSFER(x, ...) std::printf("[USB_TRANSFER: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 52 #else
sayzyas 43:1675750cca08 53 #define USB_DBG_TRANSFER(x, ...)
sayzyas 43:1675750cca08 54 #endif
sayzyas 43:1675750cca08 55
sayzyas 43:1675750cca08 56 #if (DEBUG_EVENT)
sayzyas 43:1675750cca08 57 #define USB_DBG_EVENT(x, ...) std::printf("[USB_EVENT: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
sayzyas 43:1675750cca08 58 #else
sayzyas 43:1675750cca08 59 #define USB_DBG_EVENT(x, ...)
sayzyas 43:1675750cca08 60 #endif
sayzyas 43:1675750cca08 61
sayzyas 43:1675750cca08 62
sayzyas 43:1675750cca08 63 #endif
sayzyas 43:1675750cca08 64
sayzyas 43:1675750cca08 65
sayzyas 43:1675750cca08 66