aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/uart.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-15 15:37:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-15 15:37:52 +0000
commitae70bb24cc5cd5b1d6a298ea298fe7c25b690dc8 (patch)
tree7d9485e52ffbb0129e0cb29f7c98a97692a048ba /os/hal/include/uart.h
parentc36b827d05fef72a986d8b68f14ef043eb1fc895 (diff)
downloadChibiOS-ae70bb24cc5cd5b1d6a298ea298fe7c25b690dc8.tar.gz
ChibiOS-ae70bb24cc5cd5b1d6a298ea298fe7c25b690dc8.tar.bz2
ChibiOS-ae70bb24cc5cd5b1d6a298ea298fe7c25b690dc8.zip
UART driver improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2131 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/uart.h')
-rw-r--r--os/hal/include/uart.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/os/hal/include/uart.h b/os/hal/include/uart.h
index 444975d15..005282f5e 100644
--- a/os/hal/include/uart.h
+++ b/os/hal/include/uart.h
@@ -83,8 +83,7 @@ typedef enum {
typedef enum {
UART_RX_IDLE = 0, /**< @brief Not receiving. */
UART_RX_ACTIVE = 1, /**< @brief Receiving. */
- UART_RX_ERROR = 2, /**< @brief Receive error. */
- UART_RX_COMPLETE = 3 /**< @brief Buffer complete. */
+ UART_RX_COMPLETE = 2 /**< @brief Buffer complete. */
} uartrxstate_t;
#include "uart_lld.h"