aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/USARTv1
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-11-15 15:18:55 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-11-15 15:18:55 +0000
commit9896e5a2549b74fe2687b6a1836dec6833572d85 (patch)
tree16da824a625fcc67ca017fea61e73dc772e7f382 /os/hal/ports/STM32/LLD/USARTv1
parentfd26fb26f44c3eef7b1b207dd2607e6142efd9a8 (diff)
downloadChibiOS-9896e5a2549b74fe2687b6a1836dec6833572d85.tar.gz
ChibiOS-9896e5a2549b74fe2687b6a1836dec6833572d85.tar.bz2
ChibiOS-9896e5a2549b74fe2687b6a1836dec6833572d85.zip
Fixed bug #672.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8493 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD/USARTv1')
-rw-r--r--os/hal/ports/STM32/LLD/USARTv1/uart_lld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/USARTv1/uart_lld.c b/os/hal/ports/STM32/LLD/USARTv1/uart_lld.c
index ec422dc6c..c3a84b6b1 100644
--- a/os/hal/ports/STM32/LLD/USARTv1/uart_lld.c
+++ b/os/hal/ports/STM32/LLD/USARTv1/uart_lld.c
@@ -282,7 +282,7 @@ static void uart_lld_serve_tx_end_irq(UARTDriver *uartp, uint32_t flags) {
dmaStreamDisable(uartp->dmatx);
/* A callback is generated, if enabled, after a completed transfer.*/
- _uart_wakeup_tx1_isr(uartp);
+ _uart_tx1_isr_code(uartp);
}
/**
@@ -310,7 +310,7 @@ static void serve_usart_irq(UARTDriver *uartp) {
u->CR1 = cr1 & ~USART_CR1_TCIE;
/* End of transmission, a callback is generated.*/
- _uart_wakeup_tx2_isr(uartp);
+ _uart_tx2_isr_code(uartp);
}
}