diff options
author | Karel Kočí <cynerd@email.cz> | 2016-03-20 19:07:05 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-03-20 19:07:05 +0100 |
commit | e88e18295becfb18efc278d1fab7fbe0021cb2dd (patch) | |
tree | 996f0db88529566b0c971827a3a76a0fcbbc9a81 /src/usart.c | |
parent | dba729ab1755345257724246a9df87aa7f32f25d (diff) | |
download | avr-ioe-e88e18295becfb18efc278d1fab7fbe0021cb2dd.tar.gz avr-ioe-e88e18295becfb18efc278d1fab7fbe0021cb2dd.tar.bz2 avr-ioe-e88e18295becfb18efc278d1fab7fbe0021cb2dd.zip |
Fix USART configuration
Diffstat (limited to 'src/usart.c')
-rw-r--r-- | src/usart.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usart.c b/src/usart.c index 12528f9..3da91ef 100644 --- a/src/usart.c +++ b/src/usart.c @@ -61,7 +61,7 @@ inline void usart_send(uint8_t data) { } else { IOEBUFFER_PUT(_ioe_usart_outbuffer, CONFIG_USART_OUTBUFFER_SIZE, data, - CONFIGCONFIG_USART_OUTPUT_BUFFER_MODE); + CONFIG_USART_OUTBUFFER_MODE); } #else _usart_busy = 1; @@ -112,7 +112,7 @@ static int usartput(char c, FILE * f) { } #endif -#ifdef CONFIGCONFIG_USART_INPUT_BUFFER +#ifdef CONFIG_USART_INPUT_BUFFER static int usartget(FILE * f) { uint8_t v; while (!(v = usart_get())); @@ -143,7 +143,7 @@ SIGNAL(USART_RX_vect) { #ifdef CONFIG_USART_INPUT_BUFFER uint8_t val = UDR0; IOEBUFFER_PUT(_ioe_usart_inbuffer, CONFIG_USART_INBUFFER_SIZE, - val, CONFIGCONFIG_USART_INPUT_BUFFER_MODE); + val, CONFIG_USART_INBUFFER_MODE); #endif /* CONFIG_USART_INPUT_BUFFER */ if (usart_receive) usart_receive(UDR0); |