Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/dev/ic Pull up revision 1.3 (requested by scw):



details:   https://anonhg.NetBSD.org/src/rev/9b5a3733c997
branches:  netbsd-1-4
changeset: 469761:9b5a3733c997
user:      he <he%NetBSD.org@localhost>
date:      Mon Nov 29 21:15:07 1999 +0000

description:
Pull up revision 1.3 (requested by scw):
  Fix a bug where the console 'putc' routine would spin endlessly
  under certain circumstances during shutdown.  In addition, the driver
  is now able to generate BREAK.

diffstat:

 sys/dev/ic/clmpccreg.h |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r ea66a2a07cba -r 9b5a3733c997 sys/dev/ic/clmpccreg.h
--- a/sys/dev/ic/clmpccreg.h    Mon Nov 29 21:14:28 1999 +0000
+++ b/sys/dev/ic/clmpccreg.h    Mon Nov 29 21:15:07 1999 +0000
@@ -1,4 +1,4 @@
-/*  $NetBSD: clmpccreg.h,v 1.1.2.1 1999/09/10 23:30:41 he Exp $ */
+/*  $NetBSD: clmpccreg.h,v 1.1.2.2 1999/11/29 21:15:07 he Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -204,6 +204,12 @@
 #define CLMPCC_COR2_CtsAE       (1 << 1)    /* CTS Automatic Enable */
 #define CLMPCC_COR2_DsrAE       (1 << 1)    /* DSR Automatic Enable */
 
+/* Embedded transmit commands */
+#define        CLMPCC_ETC_MAGIC                0x00            /* Introduces a command */
+#define        CLMPCC_ETC_SEND_BREAK   0x81            /* Send a BREAK character */
+#define        CLMPCC_ETC_DELAY                0x82            /* Insert a delay */
+#define        CLMPCC_ETC_STOP_BREAK   0x83            /* Stop sending BREAK */
+
 /* Channel Option Register #3 (Async options) */
 #define CLMPCC_COR3_ESCDE       (1 << 7)    /* Ext Special Char Detect Enab */
 #define CLMPCC_COR3_RngDE       (1 << 6)    /* Range Detect Enable */



Home | Main Index | Thread Index | Old Index