Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 May 1998 00:51:49 -0700
From:      Amancio Hasty <hasty@rah.star-gate.com>
To:        multimedia@FreeBSD.ORG
Subject:   new bt848 driver 
Message-ID:  <199805100751.AAA00899@rah.star-gate.com>

next in thread | raw e-mail | index | archive | help

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=<card-number>
sysctl -w hw.bt848_tuner=<tuner-number>
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805100751.AAA00899>