aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/TIVA/LLD/uDMA
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2017-04-18 23:17:00 +0200
committermarcoveeneman <marco-veeneman@hotmail.com>2017-04-18 23:17:00 +0200
commitcfbd190b1e161029c6d8e87325697fedfd2a5816 (patch)
tree7ec1cc42212408f14ef0767882ff2325860e8565 /os/hal/ports/TIVA/LLD/uDMA
parent3e3db4cf24a5fc8445c74990b2cdfc5f98ac23a9 (diff)
downloadChibiOS-Contrib-cfbd190b1e161029c6d8e87325697fedfd2a5816.tar.gz
ChibiOS-Contrib-cfbd190b1e161029c6d8e87325697fedfd2a5816.tar.bz2
ChibiOS-Contrib-cfbd190b1e161029c6d8e87325697fedfd2a5816.zip
Fixed Tiva low level driver @file documentation.
Diffstat (limited to 'os/hal/ports/TIVA/LLD/uDMA')
-rw-r--r--os/hal/ports/TIVA/LLD/uDMA/tiva_udma.c10
-rw-r--r--os/hal/ports/TIVA/LLD/uDMA/tiva_udma.h10
2 files changed, 20 insertions, 0 deletions
diff --git a/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.c b/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.c
index bb379cb..1e78bcd 100644
--- a/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.c
+++ b/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.c
@@ -14,6 +14,14 @@
limitations under the License.
*/
+/**
+ * @file uDMA/tiva_udma.c
+ * @brief DMA helper driver code.
+ *
+ * @addtogroup TIVA_DMA
+ * @{
+ */
+
#include "hal.h"
/* The following macro is only defined if some driver requiring DMA services
@@ -139,3 +147,5 @@ void udmaChannelRelease(uint8_t dmach)
}
#endif
+
+/** @} */
diff --git a/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.h b/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.h
index 0157277..9b7d255 100644
--- a/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.h
+++ b/os/hal/ports/TIVA/LLD/uDMA/tiva_udma.h
@@ -14,6 +14,14 @@
limitations under the License.
*/
+/**
+ * @file uDMA/tiva_udma.h
+ * @brief DMA helper driver header.
+ *
+ * @addtogroup TIVA_DMA
+ * @{
+ */
+
#ifndef TIVA_UDMA_H_
#define TIVA_UDMA_H_
@@ -150,3 +158,5 @@ extern "C" {
#endif
#endif /* TIVA_UDMA_H_ */
+
+/** @} */