From owner-freebsd-multimedia Sun May 10 00:51:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28651 for freebsd-multimedia-outgoing; Sun, 10 May 1998 00:51:51 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28644 for ; Sun, 10 May 1998 00:51:48 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id AAA00899 for ; Sun, 10 May 1998 00:51:49 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805100751.AAA00899@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: multimedia@FreeBSD.ORG Subject: new bt848 driver Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 May 1998 00:51:49 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ftp://rah.star-gate.com/pub/bt848.tar.gz With this release there is a better recognition mechanism for cards. A new struct is introduced: struct bt848_card_sig { int card; int tuner; u_char signature[Bt848_MAX_SIGN]; }; struct bt848_card_sig bt848_card_signature[1]= { /* IMS TURBO TV : card 5 */ { 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}} }; bt848_card_sig.card holds a card number bt848_card_sig.tuner holds a tuner number bt848_card.signature holds the first 16 bytes of the signature probe test. The program sign.c available from http://www.freebsd.org.~ahasty/Bt848.html can be used to print the signature of your card or boot verbose. If the recognition algorithm fails , you can still program the driver: sysctl -w hw.bt848_card= sysctl -w hw.bt848_tuner= sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute I intent to check in the driver in about a week from now. Have Fun, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message