1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
.TH "hackrf_transfer" 1 "2013.07.1" HACKRF "User Commands"
.SH NAME
hackrf_transfer \- file based transmit and receive sdr
.SH DESCRIPTION
The HackRF project started by Michael Ossmann and Jared Boone to build
software radio peripheral using Free Software and Free Hardware
design. Care was taken to only use electronic components with
published documentation (no NDAs!) and to avoid software libraries
without open source licenses.
.LP
Jawbreaker is the first complete HackRF platform, a wideband software radio
transceiver with a USB interface.
.LP
This application lets the user receive data from RF and transmit
data to RF.
.SH SYNOPSIS
.B hackrf_transfer [OPTIONS]
.SH OPTIONS
.IP "-h # this help"
.IP "[-d serial_number] # Serial number of desired HackRF."
.IP "-r <filename> # Receive data into file (use '-' for stdout)."
.IP "-t <filename> # Transmit data from file (use '-' for stdin)."
.IP "-w # Receive data into file with WAV header and automatic name."
.IP " # This is for SDR# compatibility and may not work with other software."
.IP "[-f set_freq_hz] # Set Freq in Hz [1MHz to 6000MHz supported, 0MHz to 7250MHz forceable]."
.IP "[-i if_freq_hz] # Intermediate Frequency (IF) in Hz [2170MHz to 2740MHz supported, 2000MHz to 3000MHz forceable]."
.IP "[-o lo_freq_hz] # Front-end Local Oscillator (LO) frequency in Hz [84MHz to 5400MHz]."
.IP "[-m image_reject] # Image rejection filter selection, 0=bypass, 1=low pass, 2=high pass."
.IP "[-a set_amp] # RX/TX RF amplifier 1=Enable, 0=Disable."
.IP "[-p antenna_enable] # Antenna port power, 1=Enable, 0=Disable."
.IP "[-l gain_db] # RX LNA (IF) gain, 0-40dB, 8dB steps"
.IP "[-g gain_db] # RX VGA (baseband) gain, 0-62dB, 2dB steps"
.IP "[-x gain_db] # TX VGA (IF) gain, 0-47dB, 1dB steps"
.IP "[-s sample_rate_hz] # Sample rate in Hz (2-20MHz supported, default 10MHz)."
.IP "[-F force] # Force use of parameters outside supported ranges."
.IP "[-n num_samples] # Number of samples to transfer (default is unlimited)."
.IP "[-S buf_size] # Enable receive streaming with buffer size buf_size."
.IP "[-B] # Print buffer statistics during transfer"
.IP "[-c amplitude] # CW signal source mode, amplitude 0-127 (DC value to DAC)."
.IP "[-R] # Repeat TX mode (default is off)"
.IP "[-C ppm] # Set Internal crystal clock error in ppm."
.IP "[-H] # Synchronize RX/TX to external trigger input."
.IP "[-b baseband_filter_bw_hz] # Set baseband filter bandwidth in Hz."
.LP
Possible values:
1.75/2.5/3.5/5/5.5/6/7/8/9/10/12/14/15/20/24/28MHz,
default < sample_rate_hz.
.SH SEE ALSO
Great Scott Gadgets HackRF web page:
.B http://greatscottgadgets.com/hackrf/
.LP
Other hackrf programs:
.sp
hackrf_cpldjtag(1), hackrf_debug(1), hackrf_info(1), hackrf_spiflash(1)
.SH AUTHOR
This manual page was written by Maitland Bottoms
for the Debian project (but may be used by others).
.SH COPYRIGHT
Copyright (c) 2013 A. Maitland Bottoms <bottoms@debian.org>
.LP
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
.LP
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
|