Projects
osmocom:nightly
limesuite
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 242
View file
limesuite_20.01.0.171.abc28.202302170010.dsc -> limesuite_20.01.0.172.9c98.202302180006.dsc
Changed
@@ -2,7 +2,7 @@ Source: limesuite Binary: liblimesuite22.09-1, liblimesuite-dev, limesuite, soapysdr-module-lms7, soapysdr0.7-module-lms7, limesuite-udev, limesuite-images22.09, limesuite-images Architecture: any all -Version: 20.01.0.171.abc28.202302170010 +Version: 20.01.0.172.9c98.202302180006 Maintainer: Lime Microsystems <apps@limemicro.com> Homepage: https://myriadrf.org/projects/lime-suite/ Standards-Version: 4.1.1 @@ -19,8 +19,8 @@ soapysdr-module-lms7 deb libs optional arch=all soapysdr0.7-module-lms7 deb comm optional arch=any Checksums-Sha1: - 5defc34bd6deb0385da69ef029adfb229f526e73 3945688 limesuite_20.01.0.171.abc28.202302170010.tar.xz + 90dc18099e8774eacbb82a931ef82cbd8b2acbf1 4056664 limesuite_20.01.0.172.9c98.202302180006.tar.xz Checksums-Sha256: - d15a704e528083b1c0d5b149ef26786e5e44409c2ce4f223a3b320218ebb00dc 3945688 limesuite_20.01.0.171.abc28.202302170010.tar.xz + 2a645776f4ff0178b72a541f4b75ab118c7ffc77046e79bf43e6c46c5b15d49d 4056664 limesuite_20.01.0.172.9c98.202302180006.tar.xz Files: - 240e6741d8425b2b9ee92ed95d28a339 3945688 limesuite_20.01.0.171.abc28.202302170010.tar.xz + 1d2099e3eb063d72a8266524fbb07831 4056664 limesuite_20.01.0.172.9c98.202302180006.tar.xz
View file
limesuite_20.01.0.171.abc28.202302170010.tar.xz/.tarball-version -> limesuite_20.01.0.172.9c98.202302180006.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -20.01.0.171-abc28.202302170010 +20.01.0.172-9c98.202302180006
View file
limesuite_20.01.0.171.abc28.202302170010.tar.xz/debian/changelog -> limesuite_20.01.0.172.9c98.202302180006.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -limesuite (20.01.0.171.abc28.202302170010) unstable; urgency=medium +limesuite (20.01.0.172.9c98.202302180006) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Fri, 17 Feb 2023 00:11:41 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Sat, 18 Feb 2023 00:08:06 +0000 limesuite (22.09.1-1) unstable; urgency=low
View file
limesuite_20.01.0.171.abc28.202302170010.tar.xz/src/lms7002_wxgui/lms7002_pnlRxTSP_view.cpp -> limesuite_20.01.0.172.9c98.202302180006.tar.xz/src/lms7002_wxgui/lms7002_pnlRxTSP_view.cpp
Changed
@@ -1497,10 +1497,8 @@ void lms7002_pnlRxTSP_view::onbtnGFIR1Coef( wxCommandEvent& event ) { lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR1 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 40; - coefficients.resize(maxCoefCount, 0); - + std::vector<double> coefficients(maxCoefCount, 0.0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0; @@ -1526,9 +1524,8 @@ void lms7002_pnlRxTSP_view::onbtnGFIR2Coef( wxCommandEvent& event ) { lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR2 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 40; - coefficients.resize(maxCoefCount, 0); + std::vector<double> coefficients(maxCoefCount, 0.0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0; @@ -1554,9 +1551,8 @@ void lms7002_pnlRxTSP_view::onbtnGFIR3Coef( wxCommandEvent& event ) { lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR3 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 120; - coefficients.resize(maxCoefCount, 0); + std::vector<double> coefficients(maxCoefCount, 0.0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0;
View file
limesuite_20.01.0.171.abc28.202302170010.tar.xz/src/lms7002_wxgui/lms7002_pnlTxTSP_view.cpp -> limesuite_20.01.0.172.9c98.202302180006.tar.xz/src/lms7002_wxgui/lms7002_pnlTxTSP_view.cpp
Changed
@@ -1448,10 +1448,10 @@ void lms7002_pnlTxTSP_view::onbtnGFIR1Coef( wxCommandEvent& event ) { + lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR1 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 40; - coefficients.resize(maxCoefCount, 0); + std::vector<double> coefficients(maxCoefCount, 0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0; @@ -1479,9 +1479,8 @@ void lms7002_pnlTxTSP_view::onbtnGFIR2Coef( wxCommandEvent& event ) { lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR2 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 40; - coefficients.resize(maxCoefCount, 0); + std::vector<double> coefficients(maxCoefCount, 0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0; @@ -1508,9 +1507,8 @@ void lms7002_pnlTxTSP_view::onbtnGFIR3Coef( wxCommandEvent& event ) { lms7002_dlgGFIR_Coefficients *dlg = new lms7002_dlgGFIR_Coefficients(this, wxID_ANY, wxT("GFIR3 Coefficients")); - std::vector<double> coefficients; const int maxCoefCount = 120; - coefficients.resize(maxCoefCount, 0); + std::vector<double> coefficients(maxCoefCount, 0); uint16_t ch; LMS_ReadParam(lmsControl,LMS7param(MAC),&ch); ch = (ch == 2) ? 1 : 0;
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.