Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/targets/f7/cube/Inc/usbd_conf.h')
-rw-r--r--firmware/targets/f7/cube/Inc/usbd_conf.h55
1 files changed, 29 insertions, 26 deletions
diff --git a/firmware/targets/f7/cube/Inc/usbd_conf.h b/firmware/targets/f7/cube/Inc/usbd_conf.h
index 21f4b5a6..98306d6a 100644
--- a/firmware/targets/f7/cube/Inc/usbd_conf.h
+++ b/firmware/targets/f7/cube/Inc/usbd_conf.h
@@ -24,7 +24,7 @@
#define __USBD_CONF__H__
#ifdef __cplusplus
- extern "C" {
+extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
@@ -66,21 +66,21 @@
*/
/*---------- -----------*/
-#define USBD_MAX_NUM_INTERFACES 1U
+#define USBD_MAX_NUM_INTERFACES 1U
/*---------- -----------*/
-#define USBD_MAX_NUM_CONFIGURATION 1U
+#define USBD_MAX_NUM_CONFIGURATION 1U
/*---------- -----------*/
-#define USBD_MAX_STR_DESC_SIZ 512U
+#define USBD_MAX_STR_DESC_SIZ 512U
/*---------- -----------*/
-#define USBD_DEBUG_LEVEL 0U
+#define USBD_DEBUG_LEVEL 0U
/*---------- -----------*/
-#define USBD_LPM_ENABLED 1U
+#define USBD_LPM_ENABLED 1U
/*---------- -----------*/
-#define USBD_SELF_POWERED 1U
+#define USBD_SELF_POWERED 1U
/****************************************/
/* #define for FS and HS identification */
-#define DEVICE_FS 0
+#define DEVICE_FS 0
/**
* @}
@@ -94,41 +94,44 @@
/* Memory management macros */
/** Alias for memory allocation. */
-#define USBD_malloc (void *)USBD_static_malloc
+#define USBD_malloc (void*)USBD_static_malloc
/** Alias for memory release. */
-#define USBD_free USBD_static_free
+#define USBD_free USBD_static_free
/** Alias for memory set. */
-#define USBD_memset memset
+#define USBD_memset memset
/** Alias for memory copy. */
-#define USBD_memcpy memcpy
+#define USBD_memcpy memcpy
/** Alias for delay. */
-#define USBD_Delay HAL_Delay
+#define USBD_Delay HAL_Delay
/* DEBUG macros */
-#if (USBD_DEBUG_LEVEL > 0)
-#define USBD_UsrLog(...) printf(__VA_ARGS__);\
- printf("\n");
+#if(USBD_DEBUG_LEVEL > 0)
+#define USBD_UsrLog(...) \
+ printf(__VA_ARGS__); \
+ printf("\n");
#else
#define USBD_UsrLog(...)
#endif
-#if (USBD_DEBUG_LEVEL > 1)
+#if(USBD_DEBUG_LEVEL > 1)
-#define USBD_ErrLog(...) printf("ERROR: ") ;\
- printf(__VA_ARGS__);\
- printf("\n");
+#define USBD_ErrLog(...) \
+ printf("ERROR: "); \
+ printf(__VA_ARGS__); \
+ printf("\n");
#else
#define USBD_ErrLog(...)
#endif
-#if (USBD_DEBUG_LEVEL > 2)
-#define USBD_DbgLog(...) printf("DEBUG : ") ;\
- printf(__VA_ARGS__);\
- printf("\n");
+#if(USBD_DEBUG_LEVEL > 2)
+#define USBD_DbgLog(...) \
+ printf("DEBUG : "); \
+ printf(__VA_ARGS__); \
+ printf("\n");
#else
#define USBD_DbgLog(...)
#endif
@@ -152,8 +155,8 @@
*/
/* Exported functions -------------------------------------------------------*/
-void *USBD_static_malloc(uint32_t size);
-void USBD_static_free(void *p);
+void* USBD_static_malloc(uint32_t size);
+void USBD_static_free(void* p);
/**
* @}