Changeset 188c76c in mainline for uspace/drv/char/ns8250/ns8250.c
- Timestamp:
- 2012-08-13T22:59:29Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fd418d9
- Parents:
- e0cd9042
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
re0cd9042 r188c76c 706 706 /* 8 bits, no parity, two stop bits. */ 707 707 ns8250_port_set_com_props(ns->regs, SERIAL_NO_PARITY, 8, 2); 708 /* Enable FIFO, clear them, with 14-byte threshold. */ 708 /* 709 * Enable FIFO, clear them, with 4-byte threshold for greater 710 * reliability. 711 */ 709 712 pio_write_8(&ns->regs->iid, NS8250_FCR_FIFOENABLE 710 | NS8250_FCR_RXFIFORESET | NS8250_FCR_TXFIFORESET 711 | NS8250_FCR_RXTRIGGERLOW | NS8250_FCR_RXTRIGGERHI);713 | NS8250_FCR_RXFIFORESET | NS8250_FCR_TXFIFORESET 714 | NS8250_FCR_RXTRIGGERLOW); 712 715 /* 713 716 * RTS/DSR set (Request to Send and Data Terminal Ready lines enabled),
Note:
See TracChangeset
for help on using the changeset viewer.