diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-07-07 09:35:22 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-07-07 09:35:22 +0000 |
commit | dd8ce2d03d3c330abb67030a9827cb3643eeb740 (patch) | |
tree | e3dd159007f1909b65298b2171b25ac89e837611 /os/hal | |
parent | 4b96f983dd6b8fbfc3876041712d7b7c6b959c20 (diff) | |
download | ChibiOS-dd8ce2d03d3c330abb67030a9827cb3643eeb740.tar.gz ChibiOS-dd8ce2d03d3c330abb67030a9827cb3643eeb740.tar.bz2 ChibiOS-dd8ce2d03d3c330abb67030a9827cb3643eeb740.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4420 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/STM32/GPIOv2/pal_lld.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/os/hal/platforms/STM32/GPIOv2/pal_lld.h b/os/hal/platforms/STM32/GPIOv2/pal_lld.h index 95a9ed669..d6e7ee7e5 100644 --- a/os/hal/platforms/STM32/GPIOv2/pal_lld.h +++ b/os/hal/platforms/STM32/GPIOv2/pal_lld.h @@ -357,9 +357,6 @@ typedef GPIO_TypeDef * ioportid_t; * @brief Writes on a I/O port.
* @details This function is implemented by writing the GPIO ODR register, the
* implementation has no side effects.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] bits bits to be written on the specified port
@@ -372,9 +369,6 @@ typedef GPIO_TypeDef * ioportid_t; * @brief Sets a bits mask on a I/O port.
* @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] bits bits to be ORed on the specified port
@@ -387,9 +381,6 @@ typedef GPIO_TypeDef * ioportid_t; * @brief Clears a bits mask on a I/O port.
* @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] bits bits to be cleared on the specified port
@@ -402,9 +393,6 @@ typedef GPIO_TypeDef * ioportid_t; * @brief Writes a group of bits.
* @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] mask group mask
@@ -422,9 +410,6 @@ typedef GPIO_TypeDef * ioportid_t; * @brief Pads group mode setup.
* @details This function programs a pads group belonging to the same port
* with the specified mode.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] mask group mask
@@ -438,9 +423,6 @@ typedef GPIO_TypeDef * ioportid_t; /**
* @brief Writes a logical state on an output pad.
- * @note Writing on pads programmed as pull-up or pull-down has the side
- * effect to modify the resistor setting because the output latched
- * data is used for the resistor selection.
*
* @param[in] port port identifier
* @param[in] pad pad number within the port
|