aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_uart.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-10-15 06:51:20 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-10-15 06:51:20 +0000
commita47f5705d3f6abf4abaffa949f7bb50132507d94 (patch)
tree88441bfd980b5186b750a7775b9c60faf4e21b66 /os/hal/src/hal_uart.c
parentcb725828056b9564ab5d723bd0738375a83c077c (diff)
downloadChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.tar.gz
ChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.tar.bz2
ChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/rt5_dev_point1@10822 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/hal_uart.c')
-rw-r--r--os/hal/src/hal_uart.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/src/hal_uart.c b/os/hal/src/hal_uart.c
index 89276f28f..ac3e4df3e 100644
--- a/os/hal/src/hal_uart.c
+++ b/os/hal/src/hal_uart.c
@@ -367,7 +367,7 @@ size_t uartStopReceiveI(UARTDriver *uartp) {
* @api
*/
msg_t uartSendTimeout(UARTDriver *uartp, size_t *np,
- const void *txbuf, systime_t timeout) {
+ const void *txbuf, sysinterval_t timeout) {
msg_t msg;
osalDbgCheck((uartp != NULL) && (*np > 0U) && (txbuf != NULL));
@@ -412,7 +412,7 @@ msg_t uartSendTimeout(UARTDriver *uartp, size_t *np,
* @api
*/
msg_t uartSendFullTimeout(UARTDriver *uartp, size_t *np,
- const void *txbuf, systime_t timeout) {
+ const void *txbuf, sysinterval_t timeout) {
msg_t msg;
osalDbgCheck((uartp != NULL) && (*np > 0U) && (txbuf != NULL));
@@ -459,7 +459,7 @@ msg_t uartSendFullTimeout(UARTDriver *uartp, size_t *np,
* @api
*/
msg_t uartReceiveTimeout(UARTDriver *uartp, size_t *np,
- void *rxbuf, systime_t timeout) {
+ void *rxbuf, sysinterval_t timeout) {
msg_t msg;
osalDbgCheck((uartp != NULL) && (*np > 0U) && (rxbuf != NULL));