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