aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
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/include
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/include')
-rw-r--r--os/hal/include/uart.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/os/hal/include/uart.h b/os/hal/include/uart.h
index c0ee4c9ef..444975d15 100644
--- a/os/hal/include/uart.h
+++ b/os/hal/include/uart.h
@@ -106,9 +106,12 @@ extern "C" {
void uartStop(UARTDriver *uartp);
void uartStartSend(UARTDriver *uartp, size_t n, const void *txbuf);
void uartStartSendI(UARTDriver *uartp, size_t n, const void *txbuf);
- void uartStopSend(UARTDriver *uartp);
+ size_t uartStopSend(UARTDriver *uartp);
+ size_t uartStopSendI(UARTDriver *uartp);
void uartStartReceive(UARTDriver *uartp, size_t n, void *rxbuf);
- void uartStopReceive(UARTDriver *uartp);
+ void uartStartReceiveI(UARTDriver *uartp, size_t n, void *rxbuf);
+ size_t uartStopReceive(UARTDriver *uartp);
+ size_t uartStopReceiveI(UARTDriver *uartp);
#ifdef __cplusplus
}
#endif