home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / CT / CT9404 / TTDEMO / SOURCE.ZIP / TUNEFUNC.H < prev    next >
Text File  |  1994-02-01  |  707b  |  17 lines

  1. /******************************************
  2. * tunefunc.h version 1.0 June 3, 1993 FvH *
  3. * header file for tunefunc.c              *
  4. ******************************************/
  5.  
  6. int InitTune(void);
  7. /* return whether I2C functions correctly. if TRUE tuner is initialized. */
  8. int GetStatus(unsigned char* Status);
  9. /* get status from tuner, return whether success */
  10. int SetFreq(unsigned long Freq);
  11. /* set tuner to given frequency Freq in Hz, return whether success.
  12.    InitTune() must have been called before use. */
  13. int SelectChannel(unsigned long freq);
  14. /* freq == 0 -> direct video,
  15.    freq != 0 -> tune frequency freq on tuner.
  16.    initializes tuner if neccesary, return whether success */
  17.