Fixed typo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4974 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
f17c783014
commit
fdfd900d97
|
@ -289,7 +289,7 @@ struct ADCDriver {
|
||||||
*/
|
*/
|
||||||
ADC_TypeDef *adc;
|
ADC_TypeDef *adc;
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to associated SMA channel.
|
* @brief Pointer to associated DMA channel.
|
||||||
*/
|
*/
|
||||||
const stm32_dma_stream_t *dmastp;
|
const stm32_dma_stream_t *dmastp;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -301,7 +301,7 @@ struct ADCDriver {
|
||||||
*/
|
*/
|
||||||
ADC_TypeDef *adc;
|
ADC_TypeDef *adc;
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to associated SMA channel.
|
* @brief Pointer to associated DMA channel.
|
||||||
*/
|
*/
|
||||||
const stm32_dma_stream_t *dmastp;
|
const stm32_dma_stream_t *dmastp;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -389,11 +389,15 @@ struct ADCDriver {
|
||||||
#endif
|
#endif
|
||||||
/* End of the mandatory fields.*/
|
/* End of the mandatory fields.*/
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to the ADCx registers block.
|
* @brief Pointer to the master ADCx registers block.
|
||||||
*/
|
*/
|
||||||
ADC_TypeDef *adc;
|
ADC_TypeDef *adcm;
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to associated SMA channel.
|
* @brief Pointer to the slave ADCx registers block.
|
||||||
|
*/
|
||||||
|
ADC_TypeDef *adc2;
|
||||||
|
/**
|
||||||
|
* @brief Pointer to associated DMA channel.
|
||||||
*/
|
*/
|
||||||
const stm32_dma_stream_t *dmastp;
|
const stm32_dma_stream_t *dmastp;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -462,7 +462,7 @@ struct ADCDriver {
|
||||||
*/
|
*/
|
||||||
ADC_TypeDef *adc;
|
ADC_TypeDef *adc;
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to associated SMA channel.
|
* @brief Pointer to associated DMA channel.
|
||||||
*/
|
*/
|
||||||
const stm32_dma_stream_t *dmastp;
|
const stm32_dma_stream_t *dmastp;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -368,7 +368,7 @@ struct ADCDriver {
|
||||||
*/
|
*/
|
||||||
ADC_TypeDef *adc;
|
ADC_TypeDef *adc;
|
||||||
/**
|
/**
|
||||||
* @brief Pointer to associated SMA channel.
|
* @brief Pointer to associated DMA channel.
|
||||||
*/
|
*/
|
||||||
const stm32_dma_stream_t *dmastp;
|
const stm32_dma_stream_t *dmastp;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue