aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM8S
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-01-02 14:58:51 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-01-02 14:58:51 +0000
commit31881e1dd3bee0ff04f3a46742d8f260210f8c29 (patch)
treede7b0c27adcdb5755702f63bc39d36264916cfff /os/hal/platforms/STM8S
parent90b70c4d4618296d0aed5d75e9170b6865192db0 (diff)
downloadChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.tar.gz
ChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.tar.bz2
ChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.zip
Updated the various serial drivers with the new queue callbacks.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2573 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM8S')
-rw-r--r--os/hal/platforms/STM8S/serial_lld.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/os/hal/platforms/STM8S/serial_lld.c b/os/hal/platforms/STM8S/serial_lld.c
index d7ccfc70a..a152e81d3 100644
--- a/os/hal/platforms/STM8S/serial_lld.c
+++ b/os/hal/platforms/STM8S/serial_lld.c
@@ -90,8 +90,9 @@ static void set_error(SerialDriver *sdp, uint8_t sr) {
}
#if STM8S_SERIAL_USE_UART1 || defined(__DOXYGEN__)
-static void notify1(void) {
+static void notify1(GenericQueue *qp) {
+ (void)qp;
UART1->CR2 |= UART1_CR2_TIEN;
}
@@ -131,8 +132,9 @@ static void uart1_deinit(void) {
#endif /* STM8S_SERIAL_USE_UART1 */
#if STM8S_SERIAL_USE_UART2 || defined(__DOXYGEN__)
-static void notify2(void) {
+static void notify2(GenericQueue *qp) {
+ (void)qp;
UART2->CR2 |= UART2_CR2_TIEN;
}
@@ -174,8 +176,9 @@ static void uart2_deinit(void) {
#endif /* STM8S_SERIAL_USE_UART1 */
#if STM8S_SERIAL_USE_UART3 || defined(__DOXYGEN__)
-static void notify3(void) {
+static void notify3(GenericQueue *qp) {
+ (void)qp;
UART3->CR2 |= UART3_CR2_TIEN;
}