aboutsummaryrefslogtreecommitdiff
path: root/lib/stm32/f4
diff options
context:
space:
mode:
authorKen Sarkies2013-03-07 11:14:06 +1030
committerKen Sarkies2013-03-07 11:14:06 +1030
commite2022f588492d5c117743b6b13801940f4a4b03e (patch)
tree8c70e829e69094361afa51489ef097a5e663ea6c /lib/stm32/f4
parent31aa3b6f5a9e9afa4d1bc8661cbaef147af55f74 (diff)
Repair to documentation (most documented files)
to remove errors, duplications and inconsistencies. File lib/stm32/f1/pwr.c - all code removed as it duplicates that in common/pwr_common.c Remaining changes do not affect code. Compiles OK. TODO efm32 has no code so generates no modules TODO F2 needs pwr.c TODO L1 needs dma.h and dma.c
Diffstat (limited to 'lib/stm32/f4')
-rw-r--r--lib/stm32/f4/crc.c5
-rw-r--r--lib/stm32/f4/dac.c5
-rw-r--r--lib/stm32/f4/dma.c5
-rw-r--r--lib/stm32/f4/gpio.c5
-rw-r--r--lib/stm32/f4/i2c.c5
-rw-r--r--lib/stm32/f4/iwdg.c5
-rw-r--r--lib/stm32/f4/pwr.c19
-rw-r--r--lib/stm32/f4/rtc.c5
-rw-r--r--lib/stm32/f4/spi.c5
-rw-r--r--lib/stm32/f4/usart.c5
10 files changed, 63 insertions, 1 deletions
diff --git a/lib/stm32/f4/crc.c b/lib/stm32/f4/crc.c
index 90e6782..1814fcc 100644
--- a/lib/stm32/f4/crc.c
+++ b/lib/stm32/f4/crc.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx CRC</b>
+@version 1.0.0
+
+@date 15 October 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/dac.c b/lib/stm32/f4/dac.c
index 4776c41..19eaa4b 100644
--- a/lib/stm32/f4/dac.c
+++ b/lib/stm32/f4/dac.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx DAC</b>
+@version 1.0.0
+
+@date 18 August 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/dma.c b/lib/stm32/f4/dma.c
index c9f5db6..75271a1 100644
--- a/lib/stm32/f4/dma.c
+++ b/lib/stm32/f4/dma.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx DMA</b>
+@version 1.0.0
+
+@date 30 November 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/gpio.c b/lib/stm32/f4/gpio.c
index 96a6f45..db42e8d 100644
--- a/lib/stm32/f4/gpio.c
+++ b/lib/stm32/f4/gpio.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx General Purpose I/O</b>
+@version 1.0.0
+
+@date 18 August 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/i2c.c b/lib/stm32/f4/i2c.c
index 3250faa..ac6f117 100644
--- a/lib/stm32/f4/i2c.c
+++ b/lib/stm32/f4/i2c.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx I2C</b>
+@version 1.0.0
+
+@date 15 October 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/iwdg.c b/lib/stm32/f4/iwdg.c
index 9332fc4..67985d6 100644
--- a/lib/stm32/f4/iwdg.c
+++ b/lib/stm32/f4/iwdg.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx Independent Watchdog Timer</b>
+@version 1.0.0
+
+@date 18 August 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/pwr.c b/lib/stm32/f4/pwr.c
index 7be34f4..e492192 100644
--- a/lib/stm32/f4/pwr.c
+++ b/lib/stm32/f4/pwr.c
@@ -1,3 +1,20 @@
+/** @defgroup pwr-file PWR
+
+@ingroup STM32F4xx
+
+@brief <b>libopencm3 STM32F4xx Power Control</b>
+
+@version 1.0.0
+
+@author @htmlonly &copy; @endhtmlonly 2011 Stephen Caudle <scaudle@doceme.com>
+
+@date 4 March 2013
+
+This library supports the power control system for the
+STM32F4 series of ARM Cortex Microcontrollers by ST Microelectronics.
+
+LGPL License Terms @ref lgpl_license
+*/
/*
* This file is part of the libopencm3 project.
*
@@ -17,7 +34,7 @@
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopencm3/stm32/f4/pwr.h>
+#include <libopencm3/stm32/pwr.h>
void pwr_set_vos_scale(vos_scale_t scale)
{
diff --git a/lib/stm32/f4/rtc.c b/lib/stm32/f4/rtc.c
index 7e1b5ff..77f5631 100644
--- a/lib/stm32/f4/rtc.c
+++ b/lib/stm32/f4/rtc.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx RTC</b>
+@version 1.0.0
+
+@date 4 March 2013
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/spi.c b/lib/stm32/f4/spi.c
index 40f5501..050d823 100644
--- a/lib/stm32/f4/spi.c
+++ b/lib/stm32/f4/spi.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx SPI</b>
+@version 1.0.0
+
+@date 15 October 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*
diff --git a/lib/stm32/f4/usart.c b/lib/stm32/f4/usart.c
index e0f7be8..201ff5d 100644
--- a/lib/stm32/f4/usart.c
+++ b/lib/stm32/f4/usart.c
@@ -4,6 +4,11 @@
@brief <b>libopencm3 STM32F4xx USART</b>
+@version 1.0.0
+
+@date 30 August 2012
+
+LGPL License Terms @ref lgpl_license
*/
/*