summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/arm_atsam/usb/udi_cdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/arm_atsam/usb/udi_cdc.h')
-rw-r--r--tmk_core/protocol/arm_atsam/usb/udi_cdc.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/tmk_core/protocol/arm_atsam/usb/udi_cdc.h b/tmk_core/protocol/arm_atsam/usb/udi_cdc.h
index 86077ce53b..9135bab546 100644
--- a/tmk_core/protocol/arm_atsam/usb/udi_cdc.h
+++ b/tmk_core/protocol/arm_atsam/usb/udi_cdc.h
@@ -49,24 +49,24 @@
#ifdef CDC
-#include "conf_usb.h"
-#include "usb_protocol.h"
-#include "usb_protocol_cdc.h"
-#include "udd.h"
-#include "udc_desc.h"
-#include "udi.h"
+# include "conf_usb.h"
+# include "usb_protocol.h"
+# include "usb_protocol_cdc.h"
+# include "udd.h"
+# include "udc_desc.h"
+# include "udi.h"
// Check the number of port
-#ifndef UDI_CDC_PORT_NB
-# define UDI_CDC_PORT_NB 1
-#endif
-#if (UDI_CDC_PORT_NB > 1)
-# error UDI_CDC_PORT_NB must be at most 1
-#endif
-
-#ifdef __cplusplus
+# ifndef UDI_CDC_PORT_NB
+# define UDI_CDC_PORT_NB 1
+# endif
+# if (UDI_CDC_PORT_NB > 1)
+# error UDI_CDC_PORT_NB must be at most 1
+# endif
+
+# ifdef __cplusplus
extern "C" {
-#endif
+# endif
/**
* \addtogroup udi_cdc_group_udc
@@ -82,9 +82,9 @@ extern UDC_DESC_STORAGE udi_api_t udi_api_cdc_data;
//#define CDC_RX_SIZE 64
//! CDC communication endpoints size for all speeds
-#define UDI_CDC_COMM_EP_SIZE CDC_ACM_SIZE
+# define UDI_CDC_COMM_EP_SIZE CDC_ACM_SIZE
//! CDC data endpoints size for FS speed (8B, 16B, 32B, 64B)
-#define UDI_CDC_DATA_EPS_FS_SIZE CDC_RX_SIZE
+# define UDI_CDC_DATA_EPS_FS_SIZE CDC_RX_SIZE
//@}
@@ -335,42 +335,42 @@ int udi_cdc_multi_putc(uint8_t port, int value);
iram_size_t udi_cdc_multi_write_buf(uint8_t port, const void* buf, iram_size_t size);
//@}
-#define CDC_PRINTBUF_SIZE 256
+# define CDC_PRINTBUF_SIZE 256
extern char printbuf[CDC_PRINTBUF_SIZE];
-#define CDC_INBUF_SIZE 256
+# define CDC_INBUF_SIZE 256
typedef struct {
uint32_t count;
uint32_t lastcount;
- char buf[CDC_INBUF_SIZE];
+ char buf[CDC_INBUF_SIZE];
} inbuf_t;
-#else //CDC
+#else // CDC
// keep these to accommodate calls if remaining
-#define CDC_PRINTBUF_SIZE 1
+# define CDC_PRINTBUF_SIZE 1
extern char printbuf[CDC_PRINTBUF_SIZE];
-#define CDC_INBUF_SIZE 1
+# define CDC_INBUF_SIZE 1
typedef struct {
uint32_t count;
uint32_t lastcount;
- char buf[CDC_INBUF_SIZE];
+ char buf[CDC_INBUF_SIZE];
} inbuf_t;
extern inbuf_t inbuf;
-#endif //CDC
+#endif // CDC
-uint32_t CDC_print(char *printbuf);
-int CDC_printf(const char *_Format, ...);
+uint32_t CDC_print(char* printbuf);
+int CDC_printf(const char* _Format, ...);
uint32_t CDC_input(void);
-void CDC_init(void);
+void CDC_init(void);
#ifdef __cplusplus
}
#endif
-#endif // _UDI_CDC_H_
+#endif // _UDI_CDC_H_