mirror of https://github.com/drowe67/librtlsdr.git
fix api documentation in rtl-sdr.h
Signed-off-by: hayati ayguen <h_ayguen@web.de>development
parent
2c2877e3c5
commit
a88dee8482
|
@ -250,7 +250,7 @@ RTLSDR_API int rtlsdr_get_tuner_gains(rtlsdr_dev_t *dev, int *gains);
|
||||||
RTLSDR_API int rtlsdr_set_tuner_gain(rtlsdr_dev_t *dev, int gain);
|
RTLSDR_API int rtlsdr_set_tuner_gain(rtlsdr_dev_t *dev, int gain);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Set the bandwidth for the device.
|
* Set (and retrieve) the bandwidth for the device.
|
||||||
*
|
*
|
||||||
* \param dev the device handle given by rtlsdr_open()
|
* \param dev the device handle given by rtlsdr_open()
|
||||||
* \param bw bandwidth in Hz. Zero means automatic BW selection.
|
* \param bw bandwidth in Hz. Zero means automatic BW selection.
|
||||||
|
@ -260,6 +260,13 @@ RTLSDR_API int rtlsdr_set_tuner_gain(rtlsdr_dev_t *dev, int gain);
|
||||||
*/
|
*/
|
||||||
RTLSDR_API int rtlsdr_set_and_get_tuner_bandwidth(rtlsdr_dev_t *dev, uint32_t bw, uint32_t *applied_bw, int apply_bw );
|
RTLSDR_API int rtlsdr_set_and_get_tuner_bandwidth(rtlsdr_dev_t *dev, uint32_t bw, uint32_t *applied_bw, int apply_bw );
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Set the bandwidth for the device.
|
||||||
|
*
|
||||||
|
* \param dev the device handle given by rtlsdr_open()
|
||||||
|
* \param bw bandwidth in Hz. Zero means automatic BW selection.
|
||||||
|
* \return 0 on success
|
||||||
|
*/
|
||||||
RTLSDR_API int rtlsdr_set_tuner_bandwidth(rtlsdr_dev_t *dev, uint32_t bw );
|
RTLSDR_API int rtlsdr_set_tuner_bandwidth(rtlsdr_dev_t *dev, uint32_t bw );
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
Loading…
Reference in New Issue