Go to the documentation of this file. 53 #include "stm32f7xx_hal.h" 61 #define USBD_MAX_NUM_INTERFACES 1 62 #define USBD_MAX_NUM_CONFIGURATION 1 63 #define USBD_MAX_STR_DESC_SIZ 0x100 64 #define USBD_SUPPORT_USER_STRING 0 65 #define USBD_SELF_POWERED 1 66 #define USBD_DEBUG_LEVEL 0 69 #define MSC_MEDIA_PACKET 512 73 #define USBD_malloc malloc 74 #define USBD_free free 75 #define USBD_memset memset 76 #define USBD_memcpy memcpy 79 #if (USBD_DEBUG_LEVEL > 0) 80 #define USBD_UsrLog(...) printf(__VA_ARGS__);\ 83 #define USBD_UsrLog(...) 86 #if (USBD_DEBUG_LEVEL > 1) 88 #define USBD_ErrLog(...) printf("ERROR: ") ;\ 92 #define USBD_ErrLog(...) 95 #if (USBD_DEBUG_LEVEL > 2) 96 #define USBD_DbgLog(...) printf("DEBUG : ") ;\ 100 #define USBD_DbgLog(...)