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.