summaryrefslogtreecommitdiffstats
path: root/bsps/microblaze/include/dev/serial/uartlite.h
diff options
context:
space:
mode:
authorMaldonado, Sergio E. (GSFC-580.0) <sergio.e.maldonado@nasa.gov>2023-02-27 22:49:20 -0600
committerJoel Sherrill <joel@rtems.org>2023-04-19 09:55:43 -0500
commitfe6a5d0f7a7ee497cd8a5e5b485fb7ec7c3dc10e (patch)
treefd80cb0256520d89ca860a0b9ea636686aab1761 /bsps/microblaze/include/dev/serial/uartlite.h
parentbsps/microblaze: Add support for multiple UARTs (diff)
downloadrtems-fe6a5d0f7a7ee497cd8a5e5b485fb7ec7c3dc10e.tar.bz2
bsps/microblaze: Fix UART transmit interrupt
Diffstat (limited to 'bsps/microblaze/include/dev/serial/uartlite.h')
-rw-r--r--bsps/microblaze/include/dev/serial/uartlite.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/bsps/microblaze/include/dev/serial/uartlite.h b/bsps/microblaze/include/dev/serial/uartlite.h
index 009f416508..f58ae92ef8 100644
--- a/bsps/microblaze/include/dev/serial/uartlite.h
+++ b/bsps/microblaze/include/dev/serial/uartlite.h
@@ -51,7 +51,9 @@ typedef struct {
uint32_t initial_baud;
uint32_t enabled;
#ifdef BSP_MICROBLAZE_FPGA_CONSOLE_INTERRUPTS
+ struct rtems_termios_tty *tty;
bool transmitting;
+ size_t tx_queued;
uint32_t irq;
#endif
} uart_lite_context;