A low level binding to the librtlsdr library for Node.js.
This package was originally created by Thomas Watson but fell behind with maintenance.
This module requires that you have librtlsdr installed on your system. In turn librtlsdr requires libusb.
You can install librtlsdr with most package managers which will ensure you have the right dependencies.
Homebrew (macOS):
brew install librtlsdr
Debian based Linux distros:
apt install librtlsdr-dev
npm install rtl-sdr
const rtlsdr = require("rtl-sdr");
// Get number of connected RTLSDR devices
const deviceCount = rtlsdr.get_device_count();
if (!deviceCount) {
console.log("No supported RTLSDR devices found");
process.exit(1);
}
console.log('Found %d device(s):', deviceCount);
For a complete running example, see example.js.
The API is thin wrapper on top of the librltsdr API as found in the
rtl-sdr.h
file. All functions exposed by this module are named the same as their
librtlsdr counterparts, except for the rtlsdr_
prefix.
Only a few changes have been made to the return values and function arguments in order to make this suitable for JavaScript.
The following constants are exposed on the rtlsdr
object:
TUNER_UNKNOWN
TUNER_E4000
TUNER_FC0012
TUNER_FC0013
TUNER_FC2580
TUNER_R820T
TUNER_R828D
Return number of devices found.
Return name of device at index
Get manufacturer, product and serial number from device at index
.
Arguments:
index
- Device indexmanufact
- An zero filledBuffer
with space for up to 256 bytes to which the manufacturer name will be written (may benull
)product
- An zero filledBuffer
with space for up to 256 bytes to which the product name will be written (may benull
)serial
- An zero filledBuffer
with space for up to 256 bytes to which the serial number will be written (may benull
)
Returns 0
on success.
Get device index by USB serial string descriptor.
Returns 0
on success, -1
if name is null
, -2
if no devices were
found at all, and -3
if devices were found, but nonee with mathcing
name.
Open device at index
.
Returns a device handle that can be used as an argument to other functions.
Close device.
Arguments:
device
- The device handle given byopen()
Returns 0 on success.
Set crystal oscillator frequencies used for the RTL2832 and the tuner IC.
Usually both ICs use the same clock. Changing the clock may make sense if you are applying an external clock to the tuner or to compensate the frequency (and samplerate) error caused by the original (cheap) crystal.
NOTE: Call this function only if you fully understand the implications.
Arguments:
device
- The device handle given byopen()
rtl_freq
- Frequency value used to clock the RTL2832 in Hztuner_freq
- Frequency value used to clock the tuner IC in Hz
Returns 0
on success.
Get crystal oscillator frequencies used for the RTL2832 and the tuner IC.
Usually both ICs use the same clock.
Arguments:
device
- The device handle given byopen()
rtl_freq
- A 32 bitBuffer
object to which a 32 bit unsigned integer will be written with the frequency value used to clock the RTL2832 in Hztuner_freq
- A 32 bitBuffer
object to which a 32 bit unsigned integer will be written with the frequency value used to clock the tuner IC in Hz
Returns 0
on success.
Get USB device strings.
NOTE: The string arguments must provide space for up to 256 bytes.
Arguments:
device
- The device handle given byopen()
manufact
- An zero filledBuffer
with space for up to 256 bytes to which the manufacturer name will be written (may benull
)product
- An zero filledBuffer
with space for up to 256 bytes to which the product name will be written (may benull
)serial
- An zero filledBuffer
with space for up to 256 bytes to which the serial number will be written (may benull
)
Returns 0
on success
Write the device EEPROM.
Arguments:
device
- The device handle given byopen()
data
- Buffer of data to be writtenoffset
- Address where the data should be writtenlen
- Length of the data
Returns 0
on success, -1
if device handle is invalid, -2
if EEPROM
size is exceeded, or -3
if no EEPROM was found.
Read the device EEPROM.
Arguments:
device
- The device handle given byopen()
data
- Buffer where the data should be writtenoffset
- Address where the data should be read fromlen
- Length of the data
Returns 0
on success, -1
if device handle is invalid, -2
if EEPROM
size is exceeded, or -3
if no EEPROM was found.
Tune device to the given frequency.
Arguments:
freq
- The center frequency to tune to
Returns 0
on success.
Get actual frequency the device is tuned to.
Arguments:
device
- The device handle given byopen()
Returns 0
on error, frequency in Hz otherwise.
Set the frequency correction value for the device.
Arguments:
device
- The device handle given byopen()
ppm
- Correction value in parts per million (ppm)
Returns 0 on success.
Get actual frequency correction value of the device.
Arguments:
device
- The device handle given byopen()
Returns correction value in parts per million (ppm).
Get the tuner type.
Arguments:
device
- The device handle given byopen()
Returns TUNER_UNKNOWN
on error, tuner type otherwise (see list of
tuner constants above).
Get a list of gains supported by the tuner.
NOTE: The gains argument must be preallocated by the caller. If null
is being given instead, the number of available gain values will be
returned.
Arguments:
device
- The device handle given byopen()
gains
- Empty array provided by the caller to which the list of gain values will be written. In tenths of a dB, 115 means 11.5 dB. If using a TypedArray, use anInt32Array
with enough room to fill in the available gains, e.g. size 100.
Returns <= 0
on error, number of available (returned) gain values
otherwise.
Set the gain for the device.
Manual gain mode must be enabled for this to work.
Valid gain values (in tenths of a dB) for the E4000 tuner: -10, 15, 40, 65, 90, 115, 140, 165, 190, 215, 240, 290, 340, 420, 430, 450, 470, 490.
Valid gain values may be queried with get_tuner_gains
function.
Arguments:
device
- The device handle given byopen()
gain
- In tenths of a dB, 115 means 11.5 dB
Returns 0
on success.
Get actual gain the device is configured to.
Arguments:
device
- The device handle given byopen()
Returns 0
on error, otherwise gain in tenths of a dB, 115 means 11.5
dB.
Set the intermediate frequency gain for the device.
Arguments:
device
- The device handle given byopen()
stage
- Intermediate frequency gain stage number (1 to 6 for E4000)gain
- In tenths of a dB, -30 means -3.0 dB
Returns 0
on success.
Set the gain mode (automatic/manual) for the device. Manual gain mode must be enabled for the gain setter function to work.
Arguments:
device
- The device handle given byopen()
manual
- Gain mode, 1 means manual gain mode shall be enabled.
Returns 0
on success.
Set the sample rate for the device, also selects the baseband filters according to the requested sample rate for tuners where this is possible.
Arguments:
device
- The device handle given byopen()
samp_rate
- The sample rate to be set, possible values are: 225001 - 300000 Hz and 900001 - 3200000 Hz. Sample loss is to be expected for rates > 2400000
Returns 0 on success, -EINVAL on invalid rate
Get actual sample rate the device is configured to.
Arguments:
device
- The device handle given byopen()
Returns 0
on error, sample rate in Hz otherwise.
Enable test mode that returns an 8 bit counter instead of the samples. The counter is generated inside the RTL2832.
Arguments:
device
- The device handle given byopen()
test
- Mode,1
means enabled,0
disabled
Returns 0
on success.
Enable or disable the internal digital AGC of the RTL2832.
Arguments:
device
- The device handle given byopen()
digital
- AGC mode,1
means enabled,0
disabled
Returns 0
on success.
Enable or disable the direct sampling mode. When enabled, the IF mode
of the RTL2832 is activated, and set_center_freq()
will control the
IF-frequency of the DDC, which can be used to tune from 0 to 28.8 MHz
(xtal frequency of the RTL2832).
Arguments:
device
- The device handle given byopen()
on
- 0 means disabled, 1 I-ADC input enabled, 2 Q-ADC input enabled
Returns 0
on success.
Get state of the direct sampling mode
Arguments:
device
- The device handle given byopen()
Returns -1
on error, 0
means disabled, 1
I-ADC input enabled, 2
Q-ADC input enabled.
Enable or disable offset tuning for zero-IF tuners, which allows to avoid problems caused by the DC offset of the ADCs and 1/f noise.
Arguments:
device
- The device handle given byopen()
on
- 0 means disabled, 1 enabled
Returns 0
on success.
Get state of the offset tuning mode.
Arguments:
device
- The device handle given byopen()
Returns -1
on error, 0
means disabled, 1
enabled
Reset the internal buffer.
Arguments:
device
- The device handle given byopen()
Returns 0 on success.
Read samples from the device synchronously.
NOTE: Make sure the buffer is big enough.
Arguments:
device
- The device handle given byopen()
buf
- The buffer to read intolen
- The size of the buffern_read
- ABuffer.alloc(4)
object to which a 32 bit integer will be written containing the size of the data that have been written tobuf
Returns 0 on success.
Read samples from the device asynchronously. Data will be read until it
is being canceled using cancel_async()
Arguments:
device
- The device handle given byopen()
on_data
- Callback function to return received samples. The callback will be called with a buffer as the first arguemnt and the size of the buffer as the secondon_end
- Callback function to be called once no more samples will be readbuf_num
- Optional buffer count, buf_num * buf_len = overall buffer size set to0
for default buffer count (15)buf_len
- Optional buffer length, must be multiple of 512, should be a multiple of 16384 (URB size), set to0
for default buffer length (16 * 32 * 512)
Returns 0 on success.
Cancel all pending asynchronous operations on the device.
Arguments:
device
- The device handle given byopen()
Returns 0
on success.
MIT