XINU
Functions
ttykickout.c File Reference
#include <xinu.h>
Include dependency graph for ttykickout.c:

Go to the source code of this file.

Functions

void ttykickout (struct uart_csreg *csrptr)
 

Function Documentation

◆ ttykickout()

void ttykickout ( struct uart_csreg csrptr)

Definition at line 10 of file ttykickout.c.

References uart_csreg::ier, UART_IER_ERBFI, and UART_IER_ETBEI.

Referenced by eputc(), ttyhandle_in(), ttyinit(), and ttyputc().

13 {
14  /* Force the UART hardware generate an output interrupt */
15 
16  csrptr->ier = UART_IER_ERBFI | UART_IER_ETBEI;
17 
18  return;
19 }
#define UART_IER_ERBFI
Definition: uart.h:65
#define UART_IER_ETBEI
Definition: uart.h:66
volatile uint32 ier
Definition: uart.h:17
Here is the caller graph for this function: