aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/LPC11xx/pal_lld.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/platforms/LPC11xx/pal_lld.h')
-rw-r--r--os/hal/platforms/LPC11xx/pal_lld.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/os/hal/platforms/LPC11xx/pal_lld.h b/os/hal/platforms/LPC11xx/pal_lld.h
index b46362aeb..2e99f0697 100644
--- a/os/hal/platforms/LPC11xx/pal_lld.h
+++ b/os/hal/platforms/LPC11xx/pal_lld.h
@@ -147,8 +147,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Reads the physical I/O port states.
- * @note This function is not meant to be invoked directly by the
- * application code.
*
* @param[in] port port identifier
* @return The port bits.
@@ -161,8 +159,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
* @brief Reads the output latch.
* @details The purpose of this function is to read back the latched output
* value.
- * @note This function is not meant to be invoked directly by the
- * application code.
*
* @param[in] port port identifier
* @return The latched logical states.
@@ -173,8 +169,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Writes a bits mask on a I/O port.
- * @note This function is not meant to be invoked directly by the
- * application code.
*
* @param[in] port port identifier
* @param[in] bits bits to be written on the specified port
@@ -185,8 +179,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Sets a bits mask on a I/O port.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
@@ -200,8 +192,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Clears a bits mask on a I/O port.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
@@ -215,8 +205,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Reads a group of bits.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
@@ -233,8 +221,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Writes a group of bits.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
@@ -254,8 +240,6 @@ typedef LPC_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 This function is not meant to be invoked directly by the
- * application code.
* @note Programming an unknown or unsupported mode is silently ignored.
*
* @param[in] port port identifier
@@ -287,8 +271,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Sets a pad logical state to @p PAL_HIGH.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
@@ -303,8 +285,6 @@ typedef LPC_GPIO_TypeDef *ioportid_t;
/**
* @brief Clears a pad logical state to @p PAL_LOW.
- * @note This function is not meant to be invoked directly by the
- * application code.
* @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.