summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/console-polled.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Move console drivers to bspsSebastian Huber2018-04-201-143/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Fix shared polled console fatal errorSebastian Huber2016-07-251-1/+2
| | | | Fatal errors must uniquely identify the source location.
* shared/console-polled.c: Use standard fatal error codesJoel Sherrill2016-07-051-3/+3
|
* shared/console-polled.c: Add include of <rtems/console.h> to fix warningJoel Sherrill2016-03-291-0/+1
|
* Add console-polled.h and update all BSPs that should use it.Joel Sherrill2014-10-101-5/+8
| | | | | | | | | | | The file console-polled.h provides the prototypes for the three required methods when implementing a single port polled console driver. This paradigm is common on simulators and simple hardware. + Updated the BSPs Makefile.am to make console-polled.h available. + Regenerated the BSPs preinstall.sm. + Updated console support files to include <bsp/console-polled.h>. + Updated console support files to make printk() support method static.
* libbsp/shared/console-polled.c: Fix warningJoel Sherrill2014-10-091-10/+3
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* Remove unused var 'sc'.Ralf Corsépius2012-10-151-2/+1
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+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.
* 2009-12-10 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-101-2/+2
| | | | | * shared/console-polled.c: Reflect changes to rtems_termios_callbacks->write.
* 2009-08-28 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-08-281-10/+10
| | | | | * bootcard.c, bsplibc.c, clockdrv_shell.h, console-polled.c: Fix formatting.
* 2008-08-30 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-08-301-1/+1
| | | | | * bootcard.c: Fix formatting. * console-polled.c: Error if minor < 2 not just <= 2.
* Remove duplicate white lines.Ralf Corsepius2004-04-211-1/+0
|
* Remove stray white spaces.Ralf Corsepius2004-04-211-7/+7
|
* Remove stray white spaces.Ralf Corsepius2004-04-151-1/+0
|
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-041-1/+1
| | | | | | * bootcard.c, bspclean.c, clockdrv_shell.c, console-polled.c, console.c, ide_ctrl.c, main.c, sbrk.c, setvec.c, tod.c, tod.h, include/coverhd.h: URL for license changed.
* 2003-06-30 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-06-301-2/+3
| | | | * console-polled.c: Corrected comments in header.
* 2001-10-12 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2001-10-121-1/+0
| | | | * console-polled.c, console.c: Fixed typo.
* 2001-01-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2001-01-031-0/+8
| | | | | | * clockdrv_shell.c: Added fast idle mode which is enabled by defining CLOCK_DRIVER_USE_FAST_IDLE. * console-polled.c: Added console_initialize_hardware() hook.
* 2000-12-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2000-12-051-6/+0
| | | | * console-polled.c: Remove warnings.
* New file. This is a simple termios console driver which is sufficientJoel Sherrill2000-06-121-0/+148
to do polled IO on a single port with VERY little support code.