summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/comm/tty_drv.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/i386: Move shared files to bspsSebastian Huber2018-04-241-413/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/pc386: Use public include pathChris Johns2018-01-041-1/+1
| | | | Update #3254.
* termios: Synchronize with latest FreeBSD headersKevin Kirspel2017-03-221-1/+1
| | | | | | | | | | | Adding modified FreeBSD headers to synchronize RTEMS termios with FreeBSD. Modify termios to support dedicated input and output baud for termios structure. Updated BSPs to use dedicated input and output baud in termios structure. Updated tools to use dedicated input and output baud in termios structure. Updated termios testsuites to use dedicated input and output baud in termios structure. Close #2897.
* bsps: Include missing <rtems/bspIo.h>Sebastian Huber2016-06-241-0/+1
|
* i386/pc386: Fix printk formatting warnings.Chris Johns2016-05-251-1/+3
|
* Updated legacy code in i386 pc386Vipul Nayyar2013-07-291-59/+34
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-3/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2011-05-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-05-251-2/+4
| | | | | * shared/comm/tty_drv.c, shared/comm/tty_drv.h: Remove CVS-Headers. Add CVS-Ids.
* 2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-09-301-1/+1
| | | | | * shared/comm/tty_drv.c: Reflect termios_baud_to_number having been renamed to rtems_termios_baud_to_number.
* 2008-05-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-231-58/+4
| | | | | | * shared/comm/tty_drv.c: Eliminate copies of switches to convert termios Bxxx constants to xxx as an integer. Use the shared termios_baud_to_number() routine to do the same conversion.
* 2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-04-231-6/+0
| | | | | * shared/comm/tty_drv.c: Remove all references to console_reserve_resources and termios_reserve_resources.
* Remove CVS LogRalf Corsepius2005-10-171-57/+0
|
* 2005-05-06 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-061-1/+6
| | | | | | * Makefile.am, comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c, irq/idt.c, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: Moved irq.h and irq_asm.h to bsp subdirectory.
* 2005-05-03 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-031-0/+5
| | | | * comm/tty_drv.c: Modified to support addition of parameter to ISRs.
* Remove duplicate white lines.Ralf Corsepius2004-04-211-11/+3
|
* Remove stray white spaces.Ralf Corsepius2004-04-211-46/+51
|
* 2001-08-16 Mike Siers <mikes@poliac.com>Joel Sherrill2001-08-161-2/+14
| | | | * comm/tty_drv.c, comm/uart.c: Correct some minor cut and paste bugs.
* 2001-07-03 Mike Seirs <mike@poliac.com>Joel Sherrill2001-07-031-14/+49
| | | | | | | | | | | * comm/tty_drv.c, comm/uart.c, comm/uart.h: Adds the capability to use task driven serial I/O to ti386 BSPs. This patch leaves thex default I/O mode to be IRQ. If you want to use task I/O mode, then the tty_drv.c file needs to be modified. Basically, all you need to change is the data values of the termios callbacks structure. This callback structure is used in the tty1_open and tty2_open functions. The values you need to set are commented out in the source code.
* 2000-12-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2000-12-051-0/+8
| | | | | * pc386/console/console.c, pc386/console/serial_mouse.c, pc386/console/vgainit.c, shared/comm/tty_drv.c: Remove warnings.
* 2000-10-18 Charles-Antoine Gauthier <charles.gauthier@nrc.ca>Joel Sherrill2000-10-181-5/+50
| | | | | | * comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c, comm/uart.h: Add the ability to set parity, number of data bits and number of stop bits to the existing i386 serial drivers.
* 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com>Joel Sherrill2000-08-301-0/+446
* shared/comm: Added "/dev/ttyS1" & "/dev/ttyS2" support for the i386 BSPs. * shared/comm/gdb_glue.c: New file. * shared/comm/i386_io.c: New file. * shared/comm/tty_drv.c: New file. * shared/comm/tty_drv.h: New file. * shared/comm/Makefile.am: Account for new files. * shared/comm/uart.c: Adds support for sending characters to another "line discipline."