mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 01:18:38 -05: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 "dsp/dsptypes.h"
|
||||
#ifdef _MSC_VER
|
||||
#define GIT_COMMIT_HASH_STR "v4.5.4"
|
||||
#define GIT_COMMIT_HASH_STR "v4.5.5"
|
||||
#else
|
||||
#include "sdrangel_version.h"
|
||||
#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
|
||||
|
||||
* Fixed RTL-SDR gain setting sequence. Fixes issue #321.
|
||||
|
@ -579,7 +579,7 @@ int HackRFOutput::webapiSettingsPutPatch(
|
||||
}
|
||||
if (deviceSettingsKeys.contains("fcPos"))
|
||||
{
|
||||
int fcPos = response.getHackRfInputSettings()->getFcPos();
|
||||
int fcPos = response.getHackRfOutputSettings()->getFcPos();
|
||||
fcPos = fcPos < 0 ? 0 : fcPos > 2 ? 2 : fcPos;
|
||||
settings.m_fcPos = (HackRFOutputSettings::fcPos_t) fcPos;
|
||||
}
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
|
||||
QString("HackRF Output"),
|
||||
QString("4.5.4"),
|
||||
QString("4.5.5"),
|
||||
QString("(c) Edouard Griffiths, F4EXB"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: sdrangel
|
||||
version: 4.5.4
|
||||
version: 4.5.5
|
||||
summary: SDRangel + LimeSDR
|
||||
description: SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
||||
confinement: strict
|
||||
|
Loading…
Reference in New Issue
Block a user