Mercurial > pt1.oyama
view driver/pt1_com.h @ 31:289794dc265f
adapted to use of multiple number of pt1:
- now pt1_open() checks major number.
- passes unique device name to device_create().
- handles device[] bit carefully.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 03 Mar 2009 05:15:40 +0900 |
parents | 67e8eca28a80 |
children |
line wrap: on
line source
#ifndef __PT1_COM_H__ #define __PT1_COM_H__ /***************************************************************************/ /* I2Cデータ位置定義 */ /***************************************************************************/ #define MAX_CHANNEL 4 // チャネル数 #define FALSE 0 #define TRUE 1 #define MAX_TUNER 2 //チューナ数 enum{ CHANNEL_TYPE_ISDB_S, CHANNEL_TYPE_ISDB_T, CHANNEL_TYPE_MAX }; /***************************************************************************/ /* 状態 */ /***************************************************************************/ enum{ STATE_STOP, // 初期化直後 STATE_START, // 通常 STATE_FULL // ストッパー }; #endif