git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2958 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
2325c7b2f7
commit
c2693bcad0
|
@ -221,7 +221,6 @@
|
||||||
* - Programmable interrupt priority.
|
* - Programmable interrupt priority.
|
||||||
* - DMA is used for receiving and transmitting.
|
* - DMA is used for receiving and transmitting.
|
||||||
* - Programmable DMA bus priority for each DMA channel.
|
* - Programmable DMA bus priority for each DMA channel.
|
||||||
* - Programmable DMA error hook.
|
|
||||||
* .
|
* .
|
||||||
* @ingroup STM32_DRIVERS
|
* @ingroup STM32_DRIVERS
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -180,6 +180,7 @@ void sdc_lld_stop_clk(SDCDriver *sdcp) {
|
||||||
* @brief Switches the bus to 4 bits mode.
|
* @brief Switches the bus to 4 bits mode.
|
||||||
*
|
*
|
||||||
* @param[in] sdcp pointer to the @p SDCDriver object
|
* @param[in] sdcp pointer to the @p SDCDriver object
|
||||||
|
* @param[in] mode bus mode
|
||||||
*
|
*
|
||||||
* @notapi
|
* @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.
|
* @brief Sends an SDIO command with no response expected.
|
||||||
*
|
*
|
||||||
* @param[in] sdcp pointer to the @p SDCDriver object
|
* @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[in] arg command argument
|
||||||
*
|
*
|
||||||
* @notapi
|
* @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.
|
* @note The CRC is not verified.
|
||||||
*
|
*
|
||||||
* @param[in] sdcp pointer to the @p SDCDriver object
|
* @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[in] arg command argument
|
||||||
* @param[out] resp pointer to the response buffer (one word)
|
* @param[out] resp pointer to the response buffer (one word)
|
||||||
* @return The operation status.
|
* @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.
|
* @brief Sends an SDIO command with a short response expected and CRC.
|
||||||
*
|
*
|
||||||
* @param[in] sdcp pointer to the @p SDCDriver object
|
* @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[in] arg command argument
|
||||||
* @param[out] resp pointer to the response buffer (one word)
|
* @param[out] resp pointer to the response buffer (one word)
|
||||||
* @return The operation status.
|
* @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.
|
* @brief Sends an SDIO command with a long response expected and CRC.
|
||||||
*
|
*
|
||||||
* @param[in] sdcp pointer to the @p SDCDriver object
|
* @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[in] arg command argument
|
||||||
* @param[out] resp pointer to the response buffer (four words)
|
* @param[out] resp pointer to the response buffer (four words)
|
||||||
* @return The operation status.
|
* @return The operation status.
|
||||||
|
|
Loading…
Reference in New Issue