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

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/usb/usb_efm32.c')
-rw-r--r--lib/usb/usb_efm32.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/usb/usb_efm32.c b/lib/usb/usb_efm32.c
index 5768947c..4f7fa254 100644
--- a/lib/usb/usb_efm32.c
+++ b/lib/usb/usb_efm32.c
@@ -1,3 +1,9 @@
+/** @addtogroup usb_file USB peripheral API
+ * @ingroup peripheral_apis
+ *
+ * @sa usb_defines
+ * @copyright See @ref lgpl_license
+ */
/*
* This file is part of the libopencm3 project.
*
@@ -26,6 +32,8 @@
#include <libopencm3/usb/usbd.h>
#include "usb_private.h"
+/**@{*/
+
/* Receive FIFO size in 32-bit words. */
#define RX_FIFO_SIZE 256
@@ -424,3 +432,5 @@ const struct _usbd_driver efm32lg_usb_driver = {
.set_address_before_status = 1,
.rx_fifo_size = RX_FIFO_SIZE,
};
+
+/**@}*/ \ No newline at end of file