Added new patron + more bladerf upgrades

pull/133/head
Ryzerth 2021-05-03 20:21:30 +02:00
rodzic b030c22c56
commit b1bb863a7e
3 zmienionych plików z 12 dodań i 5 usunięć

Wyświetl plik

@ -133,11 +133,14 @@ public:
bandwidths.push_back(bwRange->max);
bandwidthsTxt += getBandwdithScaled(bwRange->max);
bandwidthsTxt += '\0';
bandwidthsTxt += "Auto";
bandwidthsTxt += '\0';
srId = 0;
sampleRate = sampleRates[0];
bwId = 0;
// Set bandwidth to auto as default
bwId = bandwidths.size();
bladerf_close(openDev);
}
@ -192,7 +195,7 @@ private:
// Setup device parameters
bladerf_set_sample_rate(_this->openDev, BLADERF_CHANNEL_RX(0), _this->sampleRate, NULL);
bladerf_set_frequency(_this->openDev, BLADERF_CHANNEL_RX(0), _this->freq);
bladerf_set_bandwidth(_this->openDev, BLADERF_CHANNEL_RX(0), _this->bandwidths[_this->bwId], NULL);
bladerf_set_bandwidth(_this->openDev, BLADERF_CHANNEL_RX(0), (_this->bwId == _this->bandwidths.size()) ? _this->sampleRate : _this->bandwidths[_this->bwId], NULL);
bladerf_set_gain_mode(_this->openDev, BLADERF_CHANNEL_RX(0), BLADERF_GAIN_MANUAL);
bladerf_set_gain(_this->openDev, BLADERF_CHANNEL_RX(0), _this->testGain);
@ -272,10 +275,12 @@ private:
if (_this->running) { style::endDisabled(); }
ImGui::SetNextItemWidth(menuWidth);
ImGui::Text("Bandwidth");
ImGui::SameLine();
ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX());
if (ImGui::Combo(CONCAT("##_balderf_bw_sel_", _this->name), &_this->bwId, _this->bandwidthsTxt.c_str())) {
if (_this->running) {
bladerf_set_bandwidth(_this->openDev, BLADERF_CHANNEL_RX(0), _this->bandwidths[_this->bwId], NULL);
bladerf_set_bandwidth(_this->openDev, BLADERF_CHANNEL_RX(0), (_this->bwId == _this->bandwidths.size()) ? _this->sampleRate : _this->bandwidths[_this->bwId], NULL);
}
// Save config
}

Wyświetl plik

@ -36,7 +36,8 @@ namespace sdrpp_credits {
"ON4MU",
"Passion-Radio.com",
"Scanner School",
"SignalsEverywhere"
"SignalsEverywhere",
"Syne Ardwin (WI9SYN)"
};
const int contributorCount = sizeof(contributors) / sizeof(char*);

Wyświetl plik

@ -253,6 +253,7 @@ I will soon publish a contributing.md listing the code style to use.
* [Paulo Matias](https://github.com/thotypous)
* [Raov](https://twitter.com/raov_birbtog)
* [Starman0620](https://github.com/Starman0620)
* [Syne Ardwin (WI9SYN)](https://esaille.me/)
* [Szymon Zakrent](https://github.com/zakrent)
* [Tobias Mädel](https://github.com/Manawyrm)