diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-04 15:11:17 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-04 15:11:17 +0000 |
commit | 788175c0883ca8b9aa5c46918c98cd906efdeb9b (patch) | |
tree | 7cc13ab262a83f3c2140e10231e4694c4e565ea1 /os/hal/include/uart.h | |
parent | 5c2d43e6912254b2a51c01e6bb6e285d1dfc40ca (diff) | |
download | ChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.tar.gz ChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.tar.bz2 ChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.zip |
HAL MISRA-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8687 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/uart.h')
-rw-r--r-- | os/hal/include/uart.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/include/uart.h b/os/hal/include/uart.h index 2942636b4..a6a8c4298 100644 --- a/os/hal/include/uart.h +++ b/os/hal/include/uart.h @@ -321,11 +321,11 @@ extern "C" { size_t uartStopReceiveI(UARTDriver *uartp);
#if UART_USE_WAIT == TRUE
msg_t uartSendTimeout(UARTDriver *uartp, size_t *np,
- const void *txbuf, systime_t time);
+ const void *txbuf, systime_t timeout);
msg_t uartSendFullTimeout(UARTDriver *uartp, size_t *np,
- const void *txbuf, systime_t time);
+ const void *txbuf, systime_t timeout);
msg_t uartReceiveTimeout(UARTDriver *uartp, size_t *np,
- void *rxbuf, systime_t time);
+ void *rxbuf, systime_t timeout);
#endif
#if UART_USE_MUTUAL_EXCLUSION == TRUE
void uartAcquireBus(UARTDriver *uartp);
|