Fixed bug 3153591.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2629 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
463cf04eef
commit
59cd671ba9
|
@ -21,7 +21,7 @@
|
|||
* @defgroup ADC ADC Driver
|
||||
* @brief Generic ADC Driver.
|
||||
* @details This module implements a generic ADC driver.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_ADC option
|
||||
* @pre In order to use the ADC driver the @p HAL_USE_ADC option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section adc_1 Driver State Machine
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @defgroup CAN CAN Driver
|
||||
* @brief Generic CAN Driver.
|
||||
* @details This module implements a generic CAN driver.
|
||||
* @pre In order to use the CAN driver the @p CH_HAL_USE_CAN option
|
||||
* @pre In order to use the CAN driver the @p HAL_USE_CAN option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section can_1 Driver State Machine
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @defgroup I2C I2C Driver
|
||||
* @brief Generic I2C Driver.
|
||||
* @details This module implements a generic I2C driver.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_I2C option
|
||||
* @pre In order to use the I2C driver the @p HAL_USE_I2C option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section i2c_1 Driver State Machine
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
* @brief Generic MAC driver.
|
||||
* @details This module implements a generic interface for MAC (Media
|
||||
* Access Control) drivers, as example Ethernet controllers.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_MAC option
|
||||
* @pre In order to use the MAC driver the @p HAL_USE_MAC option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @ingroup IO
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
* @brief Generic MMC driver.
|
||||
* @details This module implements a portable MMC driver that uses a SPI
|
||||
* driver as physical layer.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_MMC_SPI option
|
||||
* @pre In order to use the MMC_SPI driver the @p HAL_USE_MMC_SPI option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section mmc_spi_1 Driver State Machine
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
* functions in order to support specific features but, of course, the use of
|
||||
* such interfaces would not be portable. Such interfaces shall be marked with
|
||||
* the architecture name inside the function names.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_PAL option
|
||||
* @pre In order to use the PAL driver the @p HAL_USE_PAL option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section pal_1 Implementation Rules
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @defgroup PWM PWM Driver
|
||||
* @brief Generic PWM Driver.
|
||||
* @details This module implements a generic PWM driver.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_PWM option
|
||||
* @pre In order to use the PWM driver the @p HAL_USE_PWM option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section pwm_1 Driver State Machine
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* events.<br>
|
||||
* The module also contains functions that make the implementation of the
|
||||
* interrupt service routines much easier.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_SERIAL option
|
||||
* @pre In order to use the SERIAL driver the @p HAL_USE_SERIAL option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @ingroup IO
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @defgroup SPI SPI Driver
|
||||
* @brief Generic SPI Driver.
|
||||
* @details This module implements a generic SPI driver.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_SPI option
|
||||
* @pre In order to use the SPI driver the @p HAL_USE_SPI option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section spi_1 Driver State Machine
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
* .
|
||||
* If your application requires a synchronoyus buffered driver then the
|
||||
* @ref SERIAL should be used instead.
|
||||
* @pre In order to use the ADC driver the @p CH_HAL_USE_UART option
|
||||
* @pre In order to use the UART driver the @p HAL_USE_UART option
|
||||
* must be enabled in @p halconf.h.
|
||||
*
|
||||
* @section uart_1 Driver State Machine
|
||||
|
|
|
@ -65,6 +65,7 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 2.1.7 ***
|
||||
- FIX: Fixed various errors in the HAL documentation (bug 3153591).
|
||||
- FIX: Fixed error in chIOGetxxxxxEventSource() macros (bug 3153550)
|
||||
(backported to 2.0.10)
|
||||
- FIX: Fixed error in STM32 unbuffered UART driver (bug 3153437).
|
||||
|
|
Loading…
Reference in New Issue