aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/uart_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-12 15:19:11 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-12 15:19:11 +0000
commitb01b63ed5aa6d47ac5f165b9944bbe5e140cd817 (patch)
tree3ea3fcda58672b3f8bb2df7feec6a3b2e0278809 /os/hal/templates/uart_lld.h
parent8ceaa9ca9916fda5ff51016170a2aa53766032a3 (diff)
downloadChibiOS-b01b63ed5aa6d47ac5f165b9944bbe5e140cd817.tar.gz
ChibiOS-b01b63ed5aa6d47ac5f165b9944bbe5e140cd817.tar.bz2
ChibiOS-b01b63ed5aa6d47ac5f165b9944bbe5e140cd817.zip
UART driver model improvements, templates and STM32 implementation updated.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2125 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/uart_lld.h')
-rw-r--r--os/hal/templates/uart_lld.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/templates/uart_lld.h b/os/hal/templates/uart_lld.h
index 2d5c576b3..7a0c37373 100644
--- a/os/hal/templates/uart_lld.h
+++ b/os/hal/templates/uart_lld.h
@@ -107,9 +107,9 @@ extern "C" {
void uart_lld_start(UARTDriver *uartp);
void uart_lld_stop(UARTDriver *uartp);
void uart_lld_start_send(UARTDriver *uartp, size_t n, const void *txbuf);
- void uart_lld_stop_send(UARTDriver *uartp);
+ size_t uart_lld_stop_send(UARTDriver *uartp);
void uart_lld_start_receive(UARTDriver *uartp, size_t n, void *rxbuf);
- void uart_lld_stop_receive(UARTDriver *uartp);
+ size_t uart_lld_stop_receive(UARTDriver *uartp);
#ifdef __cplusplus
}
#endif