* Decouple the FPGA DMA signal source from the AD9361 FPGA signal source.
* Add the MAX2771_EVKIT FPGA signal source and the ENABLE_FPGA_MAX2771_EVKIT flag to enable it.
* Adjust cross-compilation flags to properly support FPGA signal sources
* fix signal source names for consistency
* Detect if the spidev driver is installed when the ENABLE_MAX2771 flag is set. Detect if the DMA proxy driver is installed when the ENABLE_DMA_PROXY flag is set. Check if ENABLE_FPGA is set when either ENABLE_MAX2771 or ENABLE_DMA_PROXY is set.
* fix FPGA signal source names for consistency
* Fix FPGA-related CMakefile flags
* make cpplint happy
* make cpplint happy
* make cmakelint happy
* make clang-format happy
* Replaced the AD9361 FPGA signal source with the ADRV9361_Z7035 FPGA and the FMCOMMS5 FPGA signal sources.
* Bump local version of GoogleTest to 1.15.2 and Protocol Buffers to 27.3
* Avoid code duplication in CMake modules
* Update clang-tidy job
* Clang Tidy fixes
* Improve efficiency of Concurrent_Map and Concurrent_Queue classes
* Fix segmentation fault if the SignalSource implementation is not available
* Moved decimation factor count variable to the class
* Avoid possible runtime error when PVT.enable_rx_clock_correction=true
* Fix formatting
* Fix clang-tidy job
* Capitalize FPGA in class implementation names
* Capitalize acronyms in FPGA-related class names
* Instantiate sources only once
* Update changelog
* Bump version of google benchmark to 1.9.0
* Fix CMakeLists header file list in signal source libs
Header file paths were being appended to the source files list.
This is not that important since, in general, you don't need to add the header files to the cmake target.
* Added ION GNSS SDR Metadata Standard signal source
* Only specify outputs for the requested streams
* Fixed block iteration withing a file
The `File` object only holds a shallow reference to its `Lane` (without the list of blocks). So we must retrieve the full reference manually.
* Treat data file paths as relative to the metadata file
The data file paths are actually not native paths but URLs, this covers most cases but not all of them.
* Fixed decoding errors and refactored each class into its own file
* Fixed sample count error & refactored
* Bufferef IO & propagate configuration inside ION source
* Reset sample value before writing new one
Sample values are ORed into the output buffer because they may need a few read/write operations depending on alignment.
So, if we don't set the value to 0 before doing this, all samples quickly become 0xFF after a few cycles of the output buffer.
* Simpler handling of simpler bit formats
If a sample is the same size as a word, it is much easier to read.
* Less callback shenanigans
* Fix wrong buffer size
* Fixed conditional compilation issues
And added a comment
* Linting fixes
* Fixed arithmetic operations on pointers
* Fix formatting
* Use lock_guard instead of unique_lock
* Create a CMake target for the ION dependency for consistency
* Improve formatting, add missing include
* Fixes for C++ standards older than 20. Avoid C++20-specific lambda templates
* Update changelog
* Add Victor to the list of authors
* Fix CMake error
* Fix building error
* Fix building
* Add -DENABLE_ION=ON to CI jobs
* Fix CMake lists
* Catch all exceptions
* Fix building for -DENABLE_PLUTOSDR=ON
* Removed unused member fields and function parameters
* Use std::ifstream instead of FILE for reading sample data
* Fixed includes and code style
* Simplified disconnect() function
We can disconnect the sources directly instead of disconnecting each of their outputs.
* Implemented range check in `IONGSMSSignalSource::get_right_block(int)`
* Moved ION GSMS file source to `gnuradio_blocks/` directory
Also fixed some header guards.
* Fixed ION GNSS Metadata Standard dependency version
* Simplified by removing a very shallow class
`ion_gnss_metadata_handler` was only reading the metadata file, which can easily be done in `ion_gsms_signal_source`.
* Added valves to properly handle end of samples
* Cleaner exit if the data file is not found
* Fix uninitialized warning
* Remove unused configuration parameter. Uniformize guard names
* Fix for CMake < 3.14
* fix configuration options for the FPGA-based AD9361-based boards
* Put the global function into an anonymous namespace
Use emplace_back instead of push_back
* Make private member metadata_ a std::shared_pointer
* Simplify code
* Remove ION source from CI
* Apply clang-tidy fixes
* Initialize the receiver local oscillator frequency to GPS_L5_FREQ_HZ by default in the ADRV9361Z7035 FPGA signal source and remove unnecessary include files.
* Sort out building flags and improve their reporting
* Allow building Ad936x_Custom_Signal_Source when gnuradio-iio is not available
* Bump local version of Protocol Buffers to v28.0
* Update AArch64 features to Linux 6.10.6
* Update AArch64 features to Linux 6.10.6
* Fix: Windows does not define __ARM_NEON
* Improve detection of the dma_proxy module and the spidev driver
* Add missing include (fixes building with modern GCC)
* Adapted udp_port to multiple ports
* Fixed typo
* Fixed clang format
* Update changelog
* Add Xavier Guerrero to the authors list
* Update changelog
* Bump local version of Protocol Buffers to 28.1
* Add install and uninstall targets to nav_msg_listener
* Add Cesare to the authors list
* Add OSNMA to changelog
* Leave OSNMA files in the same folder for consistency
* Fix conflict
---------
Co-authored-by: Marc Majoral <majoralmarc@gmail.com>
Co-authored-by: cesaaargm <cesare.martinez@proton.me>
Co-authored-by: Xavier Guerrero-Pau <xguerrero@cttc.es>
Co-authored-by: Victor Castillo <victorcastilloaguero@gmail.com>
* Decouple the FPGA DMA signal source from the AD9361 FPGA signal source.
* Add the MAX2771_EVKIT FPGA signal source and the ENABLE_FPGA_MAX2771_EVKIT flag to enable it.
* Adjust cross-compilation flags to properly support FPGA signal sources
* fix signal source names for consistency
* Detect if the spidev driver is installed when the ENABLE_MAX2771 flag is set. Detect if the DMA proxy driver is installed when the ENABLE_DMA_PROXY flag is set. Check if ENABLE_FPGA is set when either ENABLE_MAX2771 or ENABLE_DMA_PROXY is set.
* fix FPGA signal source names for consistency
* Fix FPGA-related CMakefile flags
* make cpplint happy
* make cpplint happy
* make cmakelint happy
* make clang-format happy
* Replaced the AD9361 FPGA signal source with the ADRV9361_Z7035 FPGA and the FMCOMMS5 FPGA signal sources.
* Bump local version of GoogleTest to 1.15.2 and Protocol Buffers to 27.3
* Avoid code duplication in CMake modules
* Update clang-tidy job
* Clang Tidy fixes
* Improve efficiency of Concurrent_Map and Concurrent_Queue classes
* Fix segmentation fault if the SignalSource implementation is not available
* Moved decimation factor count variable to the class
* Avoid possible runtime error when PVT.enable_rx_clock_correction=true
* Fix formatting
* Fix clang-tidy job
* Capitalize FPGA in class implementation names
* Capitalize acronyms in FPGA-related class names
* Instantiate sources only once
* Update changelog
* Bump version of google benchmark to 1.9.0
* Fix CMakeLists header file list in signal source libs
Header file paths were being appended to the source files list.
This is not that important since, in general, you don't need to add the header files to the cmake target.
* Added ION GNSS SDR Metadata Standard signal source
* Only specify outputs for the requested streams
* Fixed block iteration withing a file
The `File` object only holds a shallow reference to its `Lane` (without the list of blocks). So we must retrieve the full reference manually.
* Treat data file paths as relative to the metadata file
The data file paths are actually not native paths but URLs, this covers most cases but not all of them.
* Fixed decoding errors and refactored each class into its own file
* Fixed sample count error & refactored
* Bufferef IO & propagate configuration inside ION source
* Reset sample value before writing new one
Sample values are ORed into the output buffer because they may need a few read/write operations depending on alignment.
So, if we don't set the value to 0 before doing this, all samples quickly become 0xFF after a few cycles of the output buffer.
* Simpler handling of simpler bit formats
If a sample is the same size as a word, it is much easier to read.
* Less callback shenanigans
* Fix wrong buffer size
* Fixed conditional compilation issues
And added a comment
* Linting fixes
* Fixed arithmetic operations on pointers
* Fix formatting
* Use lock_guard instead of unique_lock
* Create a CMake target for the ION dependency for consistency
* Improve formatting, add missing include
* Fixes for C++ standards older than 20. Avoid C++20-specific lambda templates
* Update changelog
* Add Victor to the list of authors
* Fix CMake error
* Fix building error
* Fix building
* Add -DENABLE_ION=ON to CI jobs
* Fix CMake lists
* Catch all exceptions
* Fix building for -DENABLE_PLUTOSDR=ON
* Removed unused member fields and function parameters
* Use std::ifstream instead of FILE for reading sample data
* Fixed includes and code style
* Simplified disconnect() function
We can disconnect the sources directly instead of disconnecting each of their outputs.
* Implemented range check in `IONGSMSSignalSource::get_right_block(int)`
* Moved ION GSMS file source to `gnuradio_blocks/` directory
Also fixed some header guards.
* Fixed ION GNSS Metadata Standard dependency version
* Simplified by removing a very shallow class
`ion_gnss_metadata_handler` was only reading the metadata file, which can easily be done in `ion_gsms_signal_source`.
* Added valves to properly handle end of samples
* Cleaner exit if the data file is not found
* Fix uninitialized warning
* Remove unused configuration parameter. Uniformize guard names
* Fix for CMake < 3.14
* fix configuration options for the FPGA-based AD9361-based boards
* Put the global function into an anonymous namespace
Use emplace_back instead of push_back
* Make private member metadata_ a std::shared_pointer
* Simplify code
* Remove ION source from CI
* Apply clang-tidy fixes
* Initialize the receiver local oscillator frequency to GPS_L5_FREQ_HZ by default in the ADRV9361Z7035 FPGA signal source and remove unnecessary include files.
* Sort out building flags and improve their reporting
* Allow building Ad936x_Custom_Signal_Source when gnuradio-iio is not available
* Bump local version of Protocol Buffers to v28.0
* Update AArch64 features to Linux 6.10.6
* Update AArch64 features to Linux 6.10.6
* Fix merging
---------
Co-authored-by: Marc Majoral <majoralmarc@gmail.com>
Co-authored-by: cesaaargm <cesare.martinez@proton.me>
Co-authored-by: Xavier Guerrero-Pau <xguerrero@cttc.es>
Co-authored-by: Victor Castillo <victorcastilloaguero@gmail.com>
* Decouple the FPGA DMA signal source from the AD9361 FPGA signal source.
* Add the MAX2771_EVKIT FPGA signal source and the ENABLE_FPGA_MAX2771_EVKIT flag to enable it.
* Adjust cross-compilation flags to properly support FPGA signal sources
* fix signal source names for consistency
* Detect if the spidev driver is installed when the ENABLE_MAX2771 flag is set. Detect if the DMA proxy driver is installed when the ENABLE_DMA_PROXY flag is set. Check if ENABLE_FPGA is set when either ENABLE_MAX2771 or ENABLE_DMA_PROXY is set.
* fix FPGA signal source names for consistency
* Fix FPGA-related CMakefile flags
* make cpplint happy
* make cpplint happy
* make cmakelint happy
* make clang-format happy
* Replaced the AD9361 FPGA signal source with the ADRV9361_Z7035 FPGA and the FMCOMMS5 FPGA signal sources.
* Bump local version of GoogleTest to 1.15.2 and Protocol Buffers to 27.3
* Avoid code duplication in CMake modules
* Update clang-tidy job
* Clang Tidy fixes
* Improve efficiency of Concurrent_Map and Concurrent_Queue classes
* Fix segmentation fault if the SignalSource implementation is not available
* Moved decimation factor count variable to the class
* Avoid possible runtime error when PVT.enable_rx_clock_correction=true
* Fix formatting
* Fix clang-tidy job
* Capitalize FPGA in class implementation names
* Capitalize acronyms in FPGA-related class names
* Instantiate sources only once
* Update changelog
* Fix building in some environments and fix CI jobs
* Fix clang-tidy complain
---------
Co-authored-by: Marc Majoral <majoralmarc@gmail.com>
Co-authored-by: cesaaargm <cesare.martinez@proton.me>
Co-authored-by: Xavier Guerrero-Pau <xguerrero@cttc.es>
* Bump local version of GoogleTest to 1.15.2 and Protocol Buffers to 27.3
* Avoid code duplication in CMake modules
* Update clang-tidy job
* Clang Tidy fixes
* Improve efficiency of Concurrent_Map and Concurrent_Queue classes
* Fix segmentation fault if the SignalSource implementation is not available
* Moved decimation factor count variable to the class
* Avoid possible runtime error when PVT.enable_rx_clock_correction=true
* Fix formatting
* Fix clang-tidy job
* Move receiver-related classes to src/core/libs
* Uniformize cmake module names
* Fix formatting
* Make clang-tidy happy
* Fix crypto benchmarks
* Fixes for old systems
* Instantiate sources only once
---------
Co-authored-by: cesaaargm <cesare.martinez@proton.me>
Co-authored-by: Xavier Guerrero-Pau <xguerrero@cttc.es>
* Clang Tidy fixes
* Get time zone offset in a more standard way
Account for leap seconds
Use GNSS-SDR.osnma_mode=strict to check for local time
* Fix for C++20
* Initialize tm in a more portable way
* Remove unnecessary data members in osnma_msg_receiver
---------
Co-authored-by: cesaaargm <cesare.martinez@proton.me>
* reverted commit [TAS-247][FEAT][Kroot] enable hotstart with last known Kroot
* DSM-KROOT loaded during startup
* if new DSM verified => stored
* this improves TTFAF from 4 min to 1 minute.
Define the following global configuration parameters:
GNSS-SDR.osnma_public_key (string, by default pointing to ../data/OSNMA_PublicKey_20240115100000_newPKID_1.crt)
GNSS-SDR.osnma_merkletree (string, by default pointing to ../data/OSNMA_MerkleTree_20240115100000_newPKID_1.xml)
Add logging of OSNMA events
Clean public API of Gnss_Crypto class
Make it possible to specify signal sorce per channel group.
Example:
;Set GPS L1 C/A channels RF channel ID to 1
Channels_1C.RF_channel_ID=1
instead of
;Set GPS L1 C/A channels RF channel ID to 1
Channel0.RF_channel_ID=1
Channel1.RF_channel_ID=1
Channel2.RF_channel_ID=1
....
Signed-off-by: Vladisslav P <vladisslav2011@gmail.com>