aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-05-14 08:27:27 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-05-14 08:27:27 +0000
commitc2693bcad09b0fa5e5fbf323d3e23c8ee0a2e1dc (patch)
tree6e3bfedd7f23467608e37f3acdeff14734916f88
parent2325c7b2f7c1dcd9f2ae26ac689dc8f3d4ac7cea (diff)
downloadChibiOS-c2693bcad09b0fa5e5fbf323d3e23c8ee0a2e1dc.tar.gz
ChibiOS-c2693bcad09b0fa5e5fbf323d3e23c8ee0a2e1dc.tar.bz2
ChibiOS-c2693bcad09b0fa5e5fbf323d3e23c8ee0a2e1dc.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2958 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/platforms/STM32/platform.dox1
-rw-r--r--os/hal/platforms/STM32/sdc_lld.c9
2 files changed, 5 insertions, 5 deletions
diff --git a/os/hal/platforms/STM32/platform.dox b/os/hal/platforms/STM32/platform.dox
index 1963e625e..50ab84f38 100644
--- a/os/hal/platforms/STM32/platform.dox
+++ b/os/hal/platforms/STM32/platform.dox
@@ -221,7 +221,6 @@
* - Programmable interrupt priority.
* - DMA is used for receiving and transmitting.
* - Programmable DMA bus priority for each DMA channel.
- * - Programmable DMA error hook.
* .
* @ingroup STM32_DRIVERS
*/
diff --git a/os/hal/platforms/STM32/sdc_lld.c b/os/hal/platforms/STM32/sdc_lld.c
index 6f2ea95ba..755fdf5ab 100644
--- a/os/hal/platforms/STM32/sdc_lld.c
+++ b/os/hal/platforms/STM32/sdc_lld.c
@@ -180,6 +180,7 @@ void sdc_lld_stop_clk(SDCDriver *sdcp) {
* @brief Switches the bus to 4 bits mode.
*
* @param[in] sdcp pointer to the @p SDCDriver object
+ * @param[in] mode bus mode
*
* @notapi
*/
@@ -203,7 +204,7 @@ void sdc_lld_set_bus_mode(SDCDriver *sdcp, sdcbusmode_t mode) {
* @brief Sends an SDIO command with no response expected.
*
* @param[in] sdcp pointer to the @p SDCDriver object
- * @param[in[ cmd card command
+ * @param[in] cmd card command
* @param[in] arg command argument
*
* @notapi
@@ -223,7 +224,7 @@ void sdc_lld_send_cmd_none(SDCDriver *sdcp, uint8_t cmd, uint32_t arg) {
* @note The CRC is not verified.
*
* @param[in] sdcp pointer to the @p SDCDriver object
- * @param[in[ cmd card command
+ * @param[in] cmd card command
* @param[in] arg command argument
* @param[out] resp pointer to the response buffer (one word)
* @return The operation status.
@@ -254,7 +255,7 @@ bool_t sdc_lld_send_cmd_short(SDCDriver *sdcp, uint8_t cmd, uint32_t arg,
* @brief Sends an SDIO command with a short response expected and CRC.
*
* @param[in] sdcp pointer to the @p SDCDriver object
- * @param[in[ cmd card command
+ * @param[in] cmd card command
* @param[in] arg command argument
* @param[out] resp pointer to the response buffer (one word)
* @return The operation status.
@@ -285,7 +286,7 @@ bool_t sdc_lld_send_cmd_short_crc(SDCDriver *sdcp, uint8_t cmd, uint32_t arg,
* @brief Sends an SDIO command with a long response expected and CRC.
*
* @param[in] sdcp pointer to the @p SDCDriver object
- * @param[in[ cmd card command
+ * @param[in] cmd card command
* @param[in] arg command argument
* @param[out] resp pointer to the response buffer (four words)
* @return The operation status.