From owner-freebsd-current Thu Jan 14 14:15:26 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17680 for freebsd-current-outgoing; Thu, 14 Jan 1999 14:15:26 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17674 for ; Thu, 14 Jan 1999 14:15:22 -0800 (PST) (envelope-from son@prism.uvsq.fr) Received: from prism.uvsq.fr (rtc103.reseau.uvsq.fr [193.51.24.19]) by soleil.uvsq.fr (8.9.1a/jtpda-5.3.2) with ESMTP id XAA04696 for ; Thu, 14 Jan 1999 23:13:59 +0100 (CET) Received: (from son@localhost) by prism.uvsq.fr (8.9.1/8.9.1) id AAA00422; Fri, 15 Jan 1999 00:14:28 GMT (envelope-from son) Message-ID: <19990115001347.00530@breizh.prism.uvsq.fr> Date: Fri, 15 Jan 1999 00:13:47 +0000 From: Nicolas Souchu To: current@FreeBSD.ORG Subject: ZIP+ detection, need testers for the patch Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e X-Operating-System: FreeBSD breizh 3.0-CURRENT FreeBSD 3.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, Currently, the ZIP+ probe is intrusive and sends char to the printer if no ZIP+ is connected. Here is a patch that corrects the problem for my printer, but I haven't any ZIP+ :) So, please check the ZIP+ is still detected. Thanks Index: immio.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ppbus/immio.c,v retrieving revision 1.5 diff -u -r1.5 immio.c --- immio.c 1999/01/10 12:04:54 1.5 +++ immio.c 1999/01/15 00:05:10 @@ -109,7 +109,7 @@ #define DECLARE_CPP_MICROSEQ \ struct ppb_microseq cpp_microseq[] = { \ - MS_CASS(0x0c), MS_DELAY(2), \ + MS_CASS(0x00), MS_DELAY(2), \ MS_DASS(0xaa), MS_DELAY(10), \ MS_DASS(0x55), MS_DELAY(10), \ MS_DASS(0x00), MS_DELAY(10), \ @@ -121,9 +121,9 @@ MS_RFETCH(MS_REG_STR, 0x38, MS_UNKNOWN /* &s3 */), \ MS_DASS(MS_UNKNOWN /* param */), \ MS_DELAY(2), \ - MS_CASS(0x0c), MS_DELAY(10), \ - MS_CASS(0x0d), MS_DELAY(2), \ - MS_CASS(0x0c), MS_DELAY(10), \ + MS_CASS(0x00), MS_DELAY(10), \ + MS_CASS(0x02), MS_DELAY(2), \ + MS_CASS(0x00), MS_DELAY(10), \ MS_DASS(0xff), MS_DELAY(10), \ MS_RET(0) \ } -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message