summaryrefslogtreecommitdiff
path: root/cdc-dials/Inc/usbd_cdc_interface.h
diff options
context:
space:
mode:
authorJanHenrik <janhenrik@janhenrik.org>2020-04-01 00:40:03 +0200
committerJanHenrik <janhenrik@janhenrik.org>2020-04-01 00:40:03 +0200
commitf7de54fc6fa6b40dfa2dfbe4c2a8ee933affa126 (patch)
tree78465e38a01011dc9f17eb73416011310532017f /cdc-dials/Inc/usbd_cdc_interface.h
parent3ec13d81e70e52246545c720abe756ccf09fb231 (diff)
downloadminikbd-f7de54fc6fa6b40dfa2dfbe4c2a8ee933affa126.tar.gz
minikbd-f7de54fc6fa6b40dfa2dfbe4c2a8ee933affa126.tar.bz2
minikbd-f7de54fc6fa6b40dfa2dfbe4c2a8ee933affa126.zip
added files
Diffstat (limited to 'cdc-dials/Inc/usbd_cdc_interface.h')
-rw-r--r--cdc-dials/Inc/usbd_cdc_interface.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/cdc-dials/Inc/usbd_cdc_interface.h b/cdc-dials/Inc/usbd_cdc_interface.h
new file mode 100644
index 0000000..1e82c56
--- /dev/null
+++ b/cdc-dials/Inc/usbd_cdc_interface.h
@@ -0,0 +1,16 @@
+#ifndef __USBD_CDC_IF_H
+#define __USBD_CDC_IF_H
+
+#include "usbd_cdc.h"
+
+#define APP_RX_DATA_SIZE 512
+#define APP_TX_DATA_SIZE 512
+
+uint8_t UserRxBuffer[APP_RX_DATA_SIZE];
+uint8_t UserTxBuffer[APP_TX_DATA_SIZE];
+
+#define CDC_POLLING_INTERVAL 10 /* in ms. The max is 65 and the min is 1 */
+
+extern USBD_CDC_ItfTypeDef USBD_CDC_fops;
+
+#endif