mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-07-05 19:42:56 +00:00
bumping version number
This commit is contained in:
parent
8be9ac859b
commit
6febea48fa
@ -62,7 +62,7 @@ endif(ENABLE_PACKAGING)
|
|||||||
###############################
|
###############################
|
||||||
# GNSS-SDR version information
|
# GNSS-SDR version information
|
||||||
###############################
|
###############################
|
||||||
set(THIS_IS_A_RELEASE OFF) # only related to version name, no further implications.
|
set(THIS_IS_A_RELEASE ON) # only related to version name, no further implications.
|
||||||
if(NOT ${THIS_IS_A_RELEASE})
|
if(NOT ${THIS_IS_A_RELEASE})
|
||||||
# Get the current working branch
|
# Get the current working branch
|
||||||
execute_process(
|
execute_process(
|
||||||
@ -84,9 +84,9 @@ endif(NOT ${THIS_IS_A_RELEASE})
|
|||||||
set(VERSION_INFO_MAJOR_VERSION 0)
|
set(VERSION_INFO_MAJOR_VERSION 0)
|
||||||
set(VERSION_INFO_API_COMPAT 0)
|
set(VERSION_INFO_API_COMPAT 0)
|
||||||
if(${THIS_IS_A_RELEASE})
|
if(${THIS_IS_A_RELEASE})
|
||||||
set(VERSION_INFO_MINOR_VERSION 5)
|
set(VERSION_INFO_MINOR_VERSION 6)
|
||||||
else(${THIS_IS_A_RELEASE})
|
else(${THIS_IS_A_RELEASE})
|
||||||
set(VERSION_INFO_MINOR_VERSION 5.git-${GIT_BRANCH}-${GIT_COMMIT_HASH})
|
set(VERSION_INFO_MINOR_VERSION 6.git-${GIT_BRANCH}-${GIT_COMMIT_HASH})
|
||||||
endif(${THIS_IS_A_RELEASE})
|
endif(${THIS_IS_A_RELEASE})
|
||||||
|
|
||||||
set(VERSION ${VERSION_INFO_MAJOR_VERSION}.${VERSION_INFO_API_COMPAT}.${VERSION_INFO_MINOR_VERSION})
|
set(VERSION ${VERSION_INFO_MAJOR_VERSION}.${VERSION_INFO_API_COMPAT}.${VERSION_INFO_MINOR_VERSION})
|
||||||
@ -720,8 +720,8 @@ if(NOT ARMADILLO_FOUND)
|
|||||||
message(STATUS " Armadillo will be downloaded and built automatically ")
|
message(STATUS " Armadillo will be downloaded and built automatically ")
|
||||||
message(STATUS " when doing 'make'. ")
|
message(STATUS " when doing 'make'. ")
|
||||||
|
|
||||||
set(armadillo_RELEASE 5.400.2)
|
set(armadillo_RELEASE 5.400.3)
|
||||||
set(armadillo_MD5 "0f06e5ddef5a3a8ef86f3a7bc480dec3")
|
set(armadillo_MD5 "397733eb2f305b50f28ead3350d975bdc")
|
||||||
|
|
||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
armadillo-${armadillo_RELEASE}
|
armadillo-${armadillo_RELEASE}
|
||||||
|
33
README.md
33
README.md
@ -94,9 +94,9 @@ In case you do not want to use PyBOMBS and prefer to build and install GNU Radio
|
|||||||
$ sudo apt-get install libopenblas-dev liblapack-dev # For Debian/Ubuntu/LinuxMint
|
$ sudo apt-get install libopenblas-dev liblapack-dev # For Debian/Ubuntu/LinuxMint
|
||||||
$ sudo yum install lapack-devel blas-devel # For Fedora/CentOS/RHEL
|
$ sudo yum install lapack-devel blas-devel # For Fedora/CentOS/RHEL
|
||||||
$ sudo zypper install lapack-devel blas-devel # For OpenSUSE
|
$ sudo zypper install lapack-devel blas-devel # For OpenSUSE
|
||||||
$ wget http://sourceforge.net/projects/arma/files/armadillo-5.400.2.tar.gz
|
$ wget http://sourceforge.net/projects/arma/files/armadillo-5.400.3.tar.gz
|
||||||
$ tar xvfz armadillo-5.400.2.tar.gz
|
$ tar xvfz armadillo-5.400.3.tar.gz
|
||||||
$ cd armadillo-5.400.2
|
$ cd armadillo-5.400.3
|
||||||
$ cmake .
|
$ cmake .
|
||||||
$ make
|
$ make
|
||||||
$ sudo make install
|
$ sudo make install
|
||||||
@ -648,10 +648,33 @@ SignalSource.gain=60 ; Front-end gain in dB
|
|||||||
SignalSource.subdevice=B:0 ; UHD subdevice specification (for USRP1 use A:0 or B:0, for USRP B210 use A:0)
|
SignalSource.subdevice=B:0 ; UHD subdevice specification (for USRP1 use A:0 or B:0, for USRP B210 use A:0)
|
||||||
~~~~~~
|
~~~~~~
|
||||||
|
|
||||||
|
|
||||||
|
***Example: Configuring the USRP X300 with two front-ends for receiving signals in L1 and L2 bands***
|
||||||
|
|
||||||
|
~~~~~~
|
||||||
|
;######### SIGNAL_SOURCE CONFIG ############
|
||||||
|
SignalSource.implementation=UHD_Signal_Source
|
||||||
|
SignalSource.device_address=192.168.40.2 ; Put your USRP IP address here
|
||||||
|
SignalSource.item_type=gr_complex
|
||||||
|
SignalSource.RF_channels=2
|
||||||
|
SignalSource.sampling_frequency=4000000
|
||||||
|
SignalSource.subdevice=A:0 B:0
|
||||||
|
|
||||||
|
;######### RF Channels specific settings ######
|
||||||
|
SignalSource.freq0=1575420000
|
||||||
|
SignalSource.gain0=50
|
||||||
|
SignalSource.samples0=0
|
||||||
|
SignalSource.dump0=false
|
||||||
|
|
||||||
|
SignalSource.freq1=1227600000
|
||||||
|
SignalSource.gain1=50
|
||||||
|
SignalSource.samples1=0
|
||||||
|
SignalSource.dump1=false
|
||||||
|
~~~~~~
|
||||||
|
|
||||||
|
|
||||||
Other examples are available at [gnss-sdr/conf/](./conf/).
|
Other examples are available at [gnss-sdr/conf/](./conf/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Signal Conditioner
|
### Signal Conditioner
|
||||||
|
|
||||||

|

|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
gnss-sdr (0.0.5) unstable; urgency=low
|
gnss-sdr (0.0.6) unstable; urgency=low
|
||||||
|
|
||||||
* First release that installs on the system and can generate packages.
|
* First release that installs on the system and can generate packages.
|
||||||
Now 'make package' builds a .deb package in Ubuntu and Linux.
|
Now 'make package' builds a .deb package in Ubuntu and Linux.
|
||||||
* Fixed some linking problems.
|
* Fixed some linking problems.
|
||||||
|
|
||||||
-- Carles Fernandez-Prades <carles.fernandez@cttc.es> Fri, 14 Nov 2014 02:03:00 +0100
|
-- Carles Fernandez-Prades <carles.fernandez@cttc.es> Wed, 02 Sep 2015 02:03:00 +0100
|
@ -1,5 +1,5 @@
|
|||||||
gnss-sdr (0.0.5) unstable; urgency=low
|
gnss-sdr (0.0.6) unstable; urgency=low
|
||||||
|
|
||||||
* First release that installs on the system and can generate deb packages.
|
* First release that installs on the system and can generate deb packages.
|
||||||
|
|
||||||
-- Carles Fernandez-Prades <carles.fernandez@cttc.es> Fri, 14 Nov 2014 02:03:00 +0100
|
-- Carles Fernandez-Prades <carles.fernandez@cttc.es> Wed, 02 Sep 2015 02:03:00 +0100
|
@ -1,6 +1,6 @@
|
|||||||
.\" Manpage for gnss\-sdr.
|
.\" Manpage for gnss\-sdr.
|
||||||
.\" Contact carles.fernandez@cttc.es to correct errors or typos.
|
.\" Contact carles.fernandez@cttc.es to correct errors or typos.
|
||||||
.TH gnss\-sdr 1 "14 Nov 2014" "0.0.5" "gnss\-sdr man page"
|
.TH gnss\-sdr 1 "2 Sep 2015" "0.0.6" "gnss\-sdr man page"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBgnss\-sdr\fR \- GNSS Software Defined Receiver.
|
\fBgnss\-sdr\fR \- GNSS Software Defined Receiver.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -30,7 +30,7 @@ Examples of configuration files available at: ${prefix}/share/gnss\-sdr/conf, wh
|
|||||||
\.TP
|
\.TP
|
||||||
Check http://gnss\-sdr.org for more information.
|
Check http://gnss\-sdr.org for more information.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
No known bugs.
|
Please report bugs at https://github.com/gnss-sdr/gnss-sdr/issues
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Carles Fernandez\-Prades (carles.fernandez@cttc.es)
|
Carles Fernandez\-Prades (carles.fernandez@cttc.es)
|
||||||
\.TP
|
\.TP
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" Manpage for volk_gnsssdr_profile
|
.\" Manpage for volk_gnsssdr_profile
|
||||||
.\" Contact carles.fernandez@cttc.es to correct errors or typos.
|
.\" Contact carles.fernandez@cttc.es to correct errors or typos.
|
||||||
.TH volk_gnsssdr_profile 1 "14 Nov 2014" "0.0.5" "volk_gnsssdr_profile man page"
|
.TH volk_gnsssdr_profile 1 "02 Sep 2015" "0.0.6" "volk_gnsssdr_profile man page"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBvolk_gnsssdr_profile\fR \- Profiler application for libvolk_gnsssdr functions.
|
\fBvolk_gnsssdr_profile\fR \- Profiler application for libvolk_gnsssdr functions.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#ifndef GNSS_SDR_VERSION
|
#ifndef GNSS_SDR_VERSION
|
||||||
#define GNSS_SDR_VERSION "0.0.5"
|
#define GNSS_SDR_VERSION "0.0.6"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GOOGLE_STRIP_LOG
|
#ifndef GOOGLE_STRIP_LOG
|
||||||
@ -148,16 +148,16 @@ int main(int argc, char** argv)
|
|||||||
google::ParseCommandLineFlags(&argc, &argv, true);
|
google::ParseCommandLineFlags(&argc, &argv, true);
|
||||||
std::cout << "Initializing GNSS-SDR v" << gnss_sdr_version << " ... Please wait." << std::endl;
|
std::cout << "Initializing GNSS-SDR v" << gnss_sdr_version << " ... Please wait." << std::endl;
|
||||||
|
|
||||||
#if CUDA_GPU_ACCEL
|
#if CUDA_GPU_ACCEL
|
||||||
// Reset the device
|
// Reset the device
|
||||||
// cudaDeviceReset causes the driver to clean up all state. While
|
// cudaDeviceReset causes the driver to clean up all state. While
|
||||||
// not mandatory in normal operation, it is good practice. It is also
|
// not mandatory in normal operation, it is good practice. It is also
|
||||||
// needed to ensure correct operation when the application is being
|
// needed to ensure correct operation when the application is being
|
||||||
// profiled. Calling cudaDeviceReset causes all profile data to be
|
// profiled. Calling cudaDeviceReset causes all profile data to be
|
||||||
// flushed before the application exits
|
// flushed before the application exits
|
||||||
cudaDeviceReset();
|
cudaDeviceReset();
|
||||||
std::cout << "Reset CUDA device done " << std::endl;
|
std::cout << "Reset CUDA device done " << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if(GOOGLE_STRIP_LOG == 0)
|
if(GOOGLE_STRIP_LOG == 0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user