mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-08-03 14:32:25 -04:00
HackRF output: fixed setting of Fc pos from REST API. Bumped version
This commit is contained in:
parent
bbcae92a0b
commit
c856d4035f
@ -27,7 +27,7 @@
|
|||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "dsp/dsptypes.h"
|
#include "dsp/dsptypes.h"
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define GIT_COMMIT_HASH_STR "v4.5.4"
|
#define GIT_COMMIT_HASH_STR "v4.5.5"
|
||||||
#else
|
#else
|
||||||
#include "sdrangel_version.h"
|
#include "sdrangel_version.h"
|
||||||
#endif
|
#endif
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
sdrangel (4.5.5-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Fixed HackRF Fc pos setting from REST API.
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 20 Apr 2019 20:14:18 +0100
|
||||||
|
|
||||||
sdrangel (4.5.4-1) unstable; urgency=medium
|
sdrangel (4.5.4-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Fixed RTL-SDR gain setting sequence. Fixes issue #321.
|
* Fixed RTL-SDR gain setting sequence. Fixes issue #321.
|
||||||
|
@ -579,7 +579,7 @@ int HackRFOutput::webapiSettingsPutPatch(
|
|||||||
}
|
}
|
||||||
if (deviceSettingsKeys.contains("fcPos"))
|
if (deviceSettingsKeys.contains("fcPos"))
|
||||||
{
|
{
|
||||||
int fcPos = response.getHackRfInputSettings()->getFcPos();
|
int fcPos = response.getHackRfOutputSettings()->getFcPos();
|
||||||
fcPos = fcPos < 0 ? 0 : fcPos > 2 ? 2 : fcPos;
|
fcPos = fcPos < 0 ? 0 : fcPos > 2 ? 2 : fcPos;
|
||||||
settings.m_fcPos = (HackRFOutputSettings::fcPos_t) fcPos;
|
settings.m_fcPos = (HackRFOutputSettings::fcPos_t) fcPos;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
|
||||||
QString("HackRF Output"),
|
QString("HackRF Output"),
|
||||||
QString("4.5.4"),
|
QString("4.5.5"),
|
||||||
QString("(c) Edouard Griffiths, F4EXB"),
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: sdrangel
|
name: sdrangel
|
||||||
version: 4.5.4
|
version: 4.5.5
|
||||||
summary: SDRangel + LimeSDR
|
summary: SDRangel + LimeSDR
|
||||||
description: SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
description: SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
||||||
confinement: strict
|
confinement: strict
|
||||||
|
Loading…
x
Reference in New Issue
Block a user