summaryrefslogtreecommitdiff
path: root/ucoo/hal/uart/uart.stm32.hh
diff options
context:
space:
mode:
authorNicolas Schodet2015-05-15 12:05:06 +0200
committerNicolas Schodet2019-10-07 00:44:50 +0200
commit41fde87ed8d1fcd593777bdfae2fa9e65006d984 (patch)
tree48a82b5ba790741d1f0bcc97eb183ea4b045d7b0 /ucoo/hal/uart/uart.stm32.hh
parent751a7d2ba7a0fbb9c6dae2d91891f0cc74897a2a (diff)
build: add support for out of tree modules
Diffstat (limited to 'ucoo/hal/uart/uart.stm32.hh')
-rw-r--r--ucoo/hal/uart/uart.stm32.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucoo/hal/uart/uart.stm32.hh b/ucoo/hal/uart/uart.stm32.hh
index 1dd3d54..7d74946 100644
--- a/ucoo/hal/uart/uart.stm32.hh
+++ b/ucoo/hal/uart/uart.stm32.hh
@@ -26,7 +26,7 @@
#include "ucoo/intf/stream.hh"
#include "ucoo/utils/fifo.hh"
-#include "config/hal/uart.hh"
+#include "config/ucoo/hal/uart.hh"
namespace ucoo {
@@ -64,9 +64,9 @@ class Uart : public Stream
/// UART number.
int n_;
/// RX FIFO, filled by interrupt handler.
- Fifo<char, UCOO_CONFIG_HAL_UART_RX_BUFFER> rx_fifo_;
+ Fifo<char, CONFIG_UCOO_HAL_UART_RX_BUFFER> rx_fifo_;
/// TX FIFO, emptied by interrupt handler.
- Fifo<char, UCOO_CONFIG_HAL_UART_TX_BUFFER> tx_fifo_;
+ Fifo<char, CONFIG_UCOO_HAL_UART_TX_BUFFER> tx_fifo_;
/// Error character, inserted in case of error.
char error_char_;
/// Is it enabled?