# HG changeset patch # User asl # Date 1104962995 0 # Node ID b91bb974985f2669d11c734760fcef317c676714 # Parent a9d4e3db838b2eae237efdace69f6287da6e5854 * doc/io.sgml: Match CYG_TTY_IN_FLAGS_ECHO and CYG_TTY_IN_FLAGS_BINARY values with source code. diff --git a/packages/io/common/current/ChangeLog b/packages/io/common/current/ChangeLog --- a/packages/io/common/current/ChangeLog +++ b/packages/io/common/current/ChangeLog @@ -1,3 +1,8 @@ +2004-12-23 Peter Korsgaard + + * doc/io.sgml: Match CYG_TTY_IN_FLAGS_ECHO and + CYG_TTY_IN_FLAGS_BINARY values with source code. + 2004-09-21 Jonathan Larmour * doc/io.sgml: Rename incorrect cyg_drv_mutex to cyg_drv_mutex_t. diff --git a/packages/io/common/current/doc/io.sgml b/packages/io/common/current/doc/io.sgml --- a/packages/io/common/current/doc/io.sgml +++ b/packages/io/common/current/doc/io.sgml @@ -870,21 +870,21 @@ character sequence "\r\n" (oft based terminals) will be mapped to "\n". -#define CYG_TTY_IN_FLAGS_BINARY 0x0004 // No input processing +#define CYG_TTY_IN_FLAGS_ECHO 0x0004 // Echo characters as processed + + + +If this bit is set in tty_in_flags, characters +will be echoed back to the serial port as they are processed. + + +#define CYG_TTY_IN_FLAGS_BINARY 0x0008 // No input processing If this bit is set in tty_in_flags, the input will not be manipulated in any way before being placed in the user’s buffer. - -#define CYG_TTY_IN_FLAGS_ECHO 0x0008 // Echo characters as processed - - - -If this bit is set in tty_in_flags, characters -will be echoed back to the serial port as they are processed. -