White space fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2476 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2010-12-12 14:51:21 +00:00
parent 997f744ad2
commit 1b12d62bd7
6 changed files with 8 additions and 8 deletions

View File

@ -86,7 +86,7 @@ typedef enum {
#if ADC_USE_WAIT || defined(__DOXYGEN__) #if ADC_USE_WAIT || defined(__DOXYGEN__)
/** /**
* @brief Resumes a thread waiting for a conversion completion. * @brief Resumes a thread waiting for a conversion completion.
* *
* @param[in] adcp pointer to the @p ADCDriver object * @param[in] adcp pointer to the @p ADCDriver object
* *
* @notapi * @notapi

View File

@ -73,12 +73,12 @@ typedef enum {
/*===========================================================================*/ /*===========================================================================*/
/** /**
* @brief Read mode. * @brief Read mode.
*/ */
#define I2C_READ 1 #define I2C_READ 1
/** /**
* @brief Write mode. * @brief Write mode.
*/ */
#define I2C_WRITE 0 #define I2C_WRITE 0

View File

@ -194,7 +194,7 @@ typedef enum {
* situation is much more efficient just wait for completion using * situation is much more efficient just wait for completion using
* polling than suspending the thread waiting for an interrupt. * polling than suspending the thread waiting for an interrupt.
* @note This API is implemented as a macro in order to minimize latency. * @note This API is implemented as a macro in order to minimize latency.
* *
* @param[in] spip pointer to the @p SPIDriver object * @param[in] spip pointer to the @p SPIDriver object
* @param[in] frame the data frame to send over the SPI bus * @param[in] frame the data frame to send over the SPI bus
* @return The received data frame from the SPI bus. * @return The received data frame from the SPI bus.
@ -222,7 +222,7 @@ typedef enum {
} }
/** /**
* @brief Wakes up the waiting thread. * @brief Wakes up the waiting thread.
* *
* @param[in] spip pointer to the @p SPIDriver object * @param[in] spip pointer to the @p SPIDriver object
* *

View File

@ -225,7 +225,7 @@ static void notify5(void) {
/** /**
* @brief USART1 interrupt handler. * @brief USART1 interrupt handler.
* *
* @isr * @isr
*/ */
CH_IRQ_HANDLER(USART1_IRQHandler) { CH_IRQ_HANDLER(USART1_IRQHandler) {

View File

@ -72,7 +72,7 @@ static uint16_t dummyrx;
/** /**
* @brief Starts the SPI DMA channels. * @brief Starts the SPI DMA channels.
* *
* @param[in] spip pointer to the @p SPIDriver object * @param[in] spip pointer to the @p SPIDriver object
*/ */
#define dma_start(spip) { \ #define dma_start(spip) { \

View File

@ -126,7 +126,7 @@ typedef struct {
#define STM32_DMA_CHANNEL_7 6 /**< @brief DMA channel 7. */ #define STM32_DMA_CHANNEL_7 6 /**< @brief DMA channel 7. */
/** /**
* @brief Associates a peripheral data register to a DMA channel. * @brief Associates a peripheral data register to a DMA channel.
* *
* @param[in] dmachp dmachp to a stm32_dma_channel_t structure * @param[in] dmachp dmachp to a stm32_dma_channel_t structure
* @param[in] cpar value to be written in the CPAR register * @param[in] cpar value to be written in the CPAR register