git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4420 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2012-07-07 09:35:22 +00:00
parent 4b96f983dd
commit dd8ce2d03d
1 changed files with 0 additions and 18 deletions

View File

@ -357,9 +357,6 @@ typedef GPIO_TypeDef * ioportid_t;
* @brief Writes on a I/O port. * @brief Writes on a I/O port.
* @details This function is implemented by writing the GPIO ODR register, the * @details This function is implemented by writing the GPIO ODR register, the
* implementation has no side effects. * 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] port port identifier
* @param[in] bits bits to be written on the specified port * @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. * @brief Sets a bits mask on a I/O port.
* @details This function is implemented by writing the GPIO BSRR register, the * @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects. * 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] port port identifier
* @param[in] bits bits to be ORed on the specified port * @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. * @brief Clears a bits mask on a I/O port.
* @details This function is implemented by writing the GPIO BSRR register, the * @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects. * 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] port port identifier
* @param[in] bits bits to be cleared on the specified port * @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. * @brief Writes a group of bits.
* @details This function is implemented by writing the GPIO BSRR register, the * @details This function is implemented by writing the GPIO BSRR register, the
* implementation has no side effects. * 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] port port identifier
* @param[in] mask group mask * @param[in] mask group mask
@ -422,9 +410,6 @@ typedef GPIO_TypeDef * ioportid_t;
* @brief Pads group mode setup. * @brief Pads group mode setup.
* @details This function programs a pads group belonging to the same port * @details This function programs a pads group belonging to the same port
* with the specified mode. * 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] port port identifier
* @param[in] mask group mask * @param[in] mask group mask
@ -438,9 +423,6 @@ typedef GPIO_TypeDef * ioportid_t;
/** /**
* @brief Writes a logical state on an output pad. * @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] port port identifier
* @param[in] pad pad number within the port * @param[in] pad pad number within the port