Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. johnny@johnnyhp:~$ rtl_power -f 123.5M:135M:2k -g 10 -i 3 -e 2h -c 50% spyhf2.csv
  2. Range: 123.5M:135M:2k
  3. Mode: normal
  4. Number of frequency hops: 0
  5. Dongle bandwidth: 4000Hz
  6. Downsampling by: 1x
  7. Cropping by: 0.00%
  8. Total FFT bins: 0
  9. Logged FFT bins: 0
  10. FFT bin size: 2000Hz
  11. Buffer size: 16384 bytes (2048.00ms)
  12.  
  13. rtl_power, a simple FFT logger for RTL2832 based DVB-T receivers
  14.  
  15. Use: rtl_power -f freq_range [-options] [-f freq2 -opts2] [filename]
  16. -f lower:upper:bin_size [Hz]
  17. valid range for bin_size is 1Hz - 2.8MHz
  18. [-i integration_interval (default: 10 seconds)]
  19. buggy if a full sweep takes longer than the interval
  20. [-1 enables single-shot mode (default: off)]
  21. [-e exit_timer (default: off/0)]
  22. [-d device_index (default: 0)]
  23. [-g tuner_gain (default: automatic)]
  24. [-p ppm_error (default: 0)]
  25. filename (a '-' dumps samples to stdout)
  26. omitting the filename also uses stdout
  27.  
  28. Experimental options:
  29. [-w window (default: rectangle)]
  30. hamming, blackman, blackman-harris, hann-poisson, bartlett, youssef
  31. [-c crop_percent (default: 0% suggested: 20%)]
  32. discards data at the edges, 100% discards everything
  33. has no effect for bins larger than 1MHz
  34. this value is a minimum crop size, more may be discarded
  35. [-F fir_size (default: disabled)]
  36. enables low-leakage downsample filter,
  37. fir_size can be 0 or 9. 0 has bad roll off,
  38. try with '-c 50%'
  39. [-r max_sample_rate (default: 2.4M)]
  40. [-P enables peak hold (default: off/averaging)]
  41. [-L enable linear output (default: off/dB)]
  42. [-D direct_sampling_mode, 0 (default/off), 1 (I), 2 (Q), 3 (no-mod)]
  43. [-O enable offset tuning (default: off)]
  44.  
  45. CSV FFT output columns:
  46. date, time, Hz low, Hz high, Hz step, samples, dbm, dbm, ...
  47.  
  48. Examples:
  49. rtl_power -f 88M:108M:125k fm_stations.csv
  50. creates 160 bins across the FM band,
  51. individual stations should be visible
  52. rtl_power -f 100M:1G:1M -i 5m -1 survey.csv
  53. a five minute low res scan of nearly everything
  54. rtl_power -f ... -i 15m -1 log.csv
  55. integrate for 15 minutes and exit afterwards
  56. rtl_power -f ... -e 1h | gzip > log.csv.gz
  57. collect data for one hour and compress it on the fly
  58.  
  59. Convert CSV to a waterfall graphic with:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement