diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-07-21 10:07:25 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-07-21 10:07:25 +0000 |
commit | 94ab7ac7e989e3c1f6723e6f6ed91df5f6dc019c (patch) | |
tree | 3c378a6fb69449fbe0a79cfa5bd238c5005d3934 /os/hal/src | |
parent | 10dd7c5f02b05e09f109f07aff4a82d153775e0e (diff) | |
download | ChibiOS-94ab7ac7e989e3c1f6723e6f6ed91df5f6dc019c.tar.gz ChibiOS-94ab7ac7e989e3c1f6723e6f6ed91df5f6dc019c.tar.bz2 ChibiOS-94ab7ac7e989e3c1f6723e6f6ed91df5f6dc019c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9716 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/hal_uart.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/os/hal/src/hal_uart.c b/os/hal/src/hal_uart.c index 72d6221dd..8df77adb5 100644 --- a/os/hal/src/hal_uart.c +++ b/os/hal/src/hal_uart.c @@ -352,6 +352,8 @@ size_t uartStopReceiveI(UARTDriver *uartp) { * sent to the UART or on timeout.
* @note The buffers are organized as uint8_t arrays for data sizes below
* or equal to 8 bits else it is organized as uint16_t arrays.
+ * @note This function implements a software timeout, it does not use
+ * any underlying HW timeout mechanism.
*
* @param[in] uartp pointer to the @p UARTDriver object
* @param[in,out] np number of data frames to transmit, on exit the number
@@ -395,6 +397,8 @@ msg_t uartSendTimeout(UARTDriver *uartp, size_t *np, * physically transmitted or on timeout.
* @note The buffers are organized as uint8_t arrays for data sizes below
* or equal to 8 bits else it is organized as uint16_t arrays.
+ * @note This function implements a software timeout, it does not use
+ * any underlying HW timeout mechanism.
*
* @param[in] uartp pointer to the @p UARTDriver object
* @param[in,out] np number of data frames to transmit, on exit the number
@@ -438,6 +442,8 @@ msg_t uartSendFullTimeout(UARTDriver *uartp, size_t *np, * received or on error/timeout.
* @note The buffers are organized as uint8_t arrays for data sizes below
* or equal to 8 bits else it is organized as uint16_t arrays.
+ * @note This function implements a software timeout, it does not use
+ * any underlying HW timeout mechanism.
*
* @param[in] uartp pointer to the @p UARTDriver object
* @param[in,out] np number of data frames to receive, on exit the number
|