fmscan.c
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:3k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* scan.c - v4l radio band scanner using signal strength
  2.    Copyright (C) 1999  Russell Kroll <rkroll@exploits.org>
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this program; if not, write to the Free Software
  13.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  */
  15. #include <math.h>
  16. #include <stdio.h>
  17. #include <fcntl.h>
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <string.h>
  21. #include <asm/types.h>
  22. #include <sys/ioctl.h>
  23. #include <linux/videodev.h>
  24. void help (char *prog)
  25. {
  26. printf ("usage: %s [-h] [-s <freq>] [-e <freq>] [-i <freq>]nn", prog);
  27. printf ("-h        - display this helpn");
  28. printf ("-s <freq> - set start of scanning range to <freq>n");
  29. printf ("-e <freq> - set end of scanning range to <freq>n");
  30. printf ("-i <freq> - set increment value between channels to <freq>n");
  31. printf ("<freq>    - a value in the format nnn.nn (MHz)n");
  32. exit (1);
  33. }
  34. int main(int argc, char **argv)
  35. {
  36. int fd, ret, i, tries = 25;
  37. struct video_tuner vt;
  38. float perc, begval, incval, endval;
  39. long lowf, highf, freq, totsig, incr, fact;
  40. char *progname;
  41. progname = argv[0]; /* getopt munges argv[] later */
  42. fd = open ("/dev/radio0", O_RDONLY); 
  43. if (fd == -1) {
  44. perror ("Unable to open /dev/radio0");
  45. exit (1);
  46. }
  47. /* USA defaults */
  48. begval = 87.9; /* start at 87.9 MHz */
  49. incval = 0.20; /* increment 0.2 MHz */
  50. endval = 107.9; /* stop at 107.9 MHz */
  51. while ((i = getopt(argc, argv, "+e:hi:s:")) != EOF) {
  52. switch (i) {
  53. case 'e':
  54. endval = atof (optarg);
  55. break;
  56. case 'i':
  57. incval = atof (optarg);
  58. break;
  59. case 's':
  60. begval = atof (optarg);
  61. break;
  62. case 'h': 
  63. default:
  64. help(progname);
  65. break;
  66. }
  67. }
  68. vt.tuner = 0;
  69. ret = ioctl(fd, VIDIOCGTUNER, &vt); /* get initial info */
  70. if ((vt.flags & VIDEO_TUNER_LOW) == 0)
  71. fact = 16;
  72. else
  73. fact = 16000;
  74. /* cope with bizarre things from atof() like 95.099998 */
  75. lowf = fact * (ceil(rint(begval * 10)) / 10);
  76. highf = fact * (ceil(rint(endval * 10)) / 10);
  77. incr = fact * incval;
  78. printf ("Scanning range: %2.1f - %2.1f MHz (%2.1f MHz increments)...n", 
  79. begval, endval, incval);
  80. for (freq = lowf; freq <= highf; freq += incr) {
  81. ioctl (fd, VIDIOCSFREQ, &freq); /* tune */
  82. printf ("%2.1f: checkingr", (freq / (double) fact));
  83. fflush (stdout);
  84. usleep (400000); /* let it lock on */
  85. totsig = 0;
  86. for (i = 0; i < tries; i++) {
  87. vt.tuner = 0;
  88. ret = ioctl(fd, VIDIOCGTUNER, &vt); /* get info */
  89. totsig += vt.signal;
  90. fflush(stdout);
  91. usleep (15000); 
  92. }
  93. /* clean up the display */
  94. printf ("                  r");
  95. perc = (totsig / (65535.0 * tries));
  96. if (perc > .5) 
  97. printf ("%2.1f: %3.1f%%          n", 
  98. (freq / (double) fact), perc * 100.0);
  99. }
  100. close (fd);
  101. return (0);
  102. }