Changeset 516ff92 in mainline for kernel/arch/arm32/src


Ignore:
Timestamp:
2009-01-31T21:27:18Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4863e50b
Parents:
96a2e45
Message:

silent kernel console output when user space console is active

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/drivers/gxemul.c

    r96a2e45 r516ff92  
    134134 * @param ch Characted to be printed.
    135135 */
    136 static void gxemul_write(chardev_t *dev, const char ch)
    137 {
    138         *((char *) gxemul_hw_map.videoram) = ch;
     136static void gxemul_write(chardev_t *dev, const char ch, bool silent)
     137{
     138        if (!silent)
     139                *((char *) gxemul_hw_map.videoram) = ch;
    139140}
    140141
Note: See TracChangeset for help on using the changeset viewer.