mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-30 23:03:05 +00:00 
			
		
		
		
	Merge branch 'next' of https://github.com/gnss-sdr/gnss-sdr into next
This commit is contained in:
		| @@ -341,7 +341,7 @@ set(GNSSSDR_MATIO_MIN_VERSION "1.5.3") | ||||
| set(GNSSSDR_GFLAGS_LOCAL_VERSION "2.2.1") | ||||
| set(GNSSSDR_GLOG_LOCAL_VERSION "0.3.5") | ||||
| set(GNSSSDR_ARMADILLO_LOCAL_VERSION "unstable") | ||||
| set(GNSSSDR_GTEST_LOCAL_VERSION "1.8.0") | ||||
| set(GNSSSDR_GTEST_LOCAL_VERSION "1.8.1") | ||||
| set(GNSSSDR_GNSS_SIM_LOCAL_VERSION "master") | ||||
| set(GNSSSDR_GPSTK_LOCAL_VERSION "2.10") | ||||
| set(GNSSSDR_MATIO_LOCAL_VERSION "1.5.12") | ||||
|   | ||||
| @@ -229,10 +229,10 @@ $ sudo ldconfig | ||||
| #### Build the [Google C++ Testing Framework](https://github.com/google/googletest "Googletest Homepage"), also known as Google Test: | ||||
|  | ||||
| ~~~~~~ | ||||
| $ wget https://github.com/google/googletest/archive/release-1.8.0.zip | ||||
| $ unzip release-1.8.0.zip | ||||
| $ cd googletest-release-1.8.0 | ||||
| $ cmake -DBUILD_GTEST=ON -DBUILD_GMOCK=OFF . | ||||
| $ wget https://github.com/google/googletest/archive/release-1.8.1.zip | ||||
| $ unzip release-1.8.1.zip | ||||
| $ cd googletest-release-1.8.1 | ||||
| $ cmake -DINSTALL_GTEST=OFF -DBUILD_GMOCK=OFF . | ||||
| $ make | ||||
| ~~~~~~ | ||||
|  | ||||
|   | ||||
| @@ -571,10 +571,32 @@ bool rtklib_solver::get_PVT(const std::map<int, Gnss_Synchro>& gnss_observables_ | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|  | ||||
|                                     // ECEF POS X,Y,X [m] + ECEF VEL X,Y,X [m/s] (6 x double) | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&pvt_sol.rr[0]), sizeof(pvt_sol.rr)); | ||||
|                                     tmp_double = pvt_sol.rr[0]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.rr[1]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.rr[2]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.rr[3]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.rr[4]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.rr[5]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|  | ||||
|                                     // position variance/covariance (m^2) {c_xx,c_yy,c_zz,c_xy,c_yz,c_zx} (6 x double) | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&pvt_sol.qr[0]), sizeof(pvt_sol.qr)); | ||||
|                                     tmp_double = pvt_sol.qr[0]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.qr[1]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.qr[2]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.qr[3]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.qr[4]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|                                     tmp_double = pvt_sol.qr[5]; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&tmp_double), sizeof(double)); | ||||
|  | ||||
|                                     // GEO user position Latitude [deg] | ||||
|                                     tmp_double = get_latitude(); | ||||
| @@ -593,14 +615,15 @@ bool rtklib_solver::get_PVT(const std::map<int, Gnss_Synchro>& gnss_observables_ | ||||
|                                     // RTKLIB solution type (0:xyz-ecef,1:enu-baseline) | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&pvt_sol.type), sizeof(uint8_t)); | ||||
|                                     // AR ratio factor for validation | ||||
|                                     tmp_double = pvt_sol.ratio; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&pvt_sol.ratio), sizeof(float)); | ||||
|                                     // AR ratio threshold for validation | ||||
|                                     tmp_double = pvt_sol.thres; | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&pvt_sol.thres), sizeof(float)); | ||||
|  | ||||
|                                     // GDOP / PDOP/ HDOP/ VDOP | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&dop_[0]), sizeof(double) * 4); | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&dop_[0]), sizeof(double)); | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&dop_[1]), sizeof(double)); | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&dop_[2]), sizeof(double)); | ||||
|                                     d_dump_file.write(reinterpret_cast<char*>(&dop_[3]), sizeof(double)); | ||||
|                                 } | ||||
|                             catch (const std::ifstream::failure& e) | ||||
|                                 { | ||||
|   | ||||
| @@ -37,6 +37,10 @@ include_directories( | ||||
|      ${VOLK_INCLUDE_DIRS} | ||||
| ) | ||||
|  | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|      add_definitions( -DGR_GREATER_38=1 ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|  | ||||
| file(GLOB INPUT_FILTER_ADAPTER_HEADERS "*.h") | ||||
| list(SORT INPUT_FILTER_ADAPTER_HEADERS) | ||||
| add_library(input_filter_adapters ${INPUT_FILTER_ADAPTER_SOURCES} ${INPUT_FILTER_ADAPTER_HEADERS}) | ||||
|   | ||||
| @@ -43,8 +43,12 @@ | ||||
| #include <gnuradio/blocks/float_to_char.h> | ||||
| #include <gnuradio/blocks/float_to_complex.h> | ||||
| #include <gnuradio/blocks/float_to_short.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/filter/fir_filter_blk.h> | ||||
| #else | ||||
| #include <gnuradio/filter/fir_filter_ccf.h> | ||||
| #include <gnuradio/filter/fir_filter_fff.h> | ||||
| #endif | ||||
| #include <cmath> | ||||
| #include <string> | ||||
| #include <vector> | ||||
|   | ||||
| @@ -36,9 +36,13 @@ | ||||
| #include "gnss_block_interface.h" | ||||
| #include "short_x2_to_cshort.h" | ||||
| #include "complex_float_to_complex_byte.h" | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter.h> | ||||
| #else | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter_ccf.h> | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter_fcf.h> | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter_scf.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/file_sink.h> | ||||
| #include <gnuradio/blocks/complex_to_float.h> | ||||
| #include <gnuradio/blocks/char_to_short.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include "gnss_block_interface.h" | ||||
| #include "pulse_blanking_cc.h" | ||||
| #include <gnuradio/blocks/file_sink.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter.h> | ||||
| #else | ||||
| #include <gnuradio/filter/freq_xlating_fir_filter_ccf.h> | ||||
| #endif | ||||
| #include <string> | ||||
|  | ||||
| class ConfigurationInterface; | ||||
|   | ||||
| @@ -32,9 +32,9 @@ include_directories( | ||||
| ) | ||||
|  | ||||
|  | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.15" ) | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|      add_definitions( -DGR_GREATER_38=1 ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.15" ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|  | ||||
|  | ||||
| file(GLOB RESAMPLER_ADAPTER_HEADERS "*.h") | ||||
|   | ||||
| @@ -98,9 +98,9 @@ if(ENABLE_AD9361) | ||||
|     set(OPT_RECEIVER_INCLUDE_DIRS ${OPT_RECEIVER_INCLUDE_DIRS} ${IIO_INCLUDE_DIRS}) | ||||
| endif(ENABLE_AD9361) | ||||
|  | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.15" ) | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|      add_definitions( -DGR_GREATER_38=1 ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.15" ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|  | ||||
|  | ||||
| include_directories( | ||||
|   | ||||
| @@ -55,7 +55,7 @@ if(NOT ${GTEST_DIR_LOCAL}) | ||||
|          GIT_TAG release-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gtest/gtest-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          CMAKE_ARGS ${GTEST_COMPILER} -DBUILD_GTEST=ON -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} | ||||
|          CMAKE_ARGS ${GTEST_COMPILER} -DINSTALL_GTEST=OFF -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} | ||||
|          UPDATE_COMMAND "" | ||||
|          PATCH_COMMAND "" | ||||
|          INSTALL_COMMAND "" | ||||
| @@ -67,7 +67,7 @@ if(NOT ${GTEST_DIR_LOCAL}) | ||||
|          GIT_TAG release-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../thirdparty/gtest/gtest-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${GNSSSDR_GTEST_LOCAL_VERSION} | ||||
|          CMAKE_ARGS ${GTEST_COMPILER} -DBUILD_GTEST=ON -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} | ||||
|          CMAKE_ARGS ${GTEST_COMPILER} -DINSTALL_GTEST=OFF -DBUILD_GMOCK=OFF ${TOOLCHAIN_ARG} | ||||
|          UPDATE_COMMAND "" | ||||
|          PATCH_COMMAND "" | ||||
|          BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/../../gtest-${GNSSSDR_GTEST_LOCAL_VERSION}/googletest/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_STATIC_LIBRARY_SUFFIX} | ||||
| @@ -136,6 +136,10 @@ if(Boost_VERSION LESS 105000) | ||||
|      add_definitions(-DOLD_BOOST=1) | ||||
| endif(Boost_VERSION LESS 105000) | ||||
|  | ||||
| if(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|      add_definitions( -DGR_GREATER_38=1 ) | ||||
| endif(${PC_GNURADIO_RUNTIME_VERSION} VERSION_GREATER "3.7.13.4" ) | ||||
|  | ||||
| if(OPENSSL_FOUND) | ||||
|     add_definitions( -DUSE_OPENSSL_FALLBACK=1 ) | ||||
| endif(OPENSSL_FOUND) | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
|   | ||||
| @@ -45,7 +45,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -37,7 +37,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -36,7 +36,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
|   | ||||
| @@ -39,7 +39,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
| #include "in_memory_configuration.h" | ||||
|   | ||||
| @@ -36,7 +36,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -33,7 +33,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -37,7 +37,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -38,7 +38,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -36,7 +36,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/throttle.h> | ||||
|   | ||||
| @@ -36,7 +36,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_block_interface.h" | ||||
|   | ||||
| @@ -37,7 +37,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -36,7 +36,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -37,7 +37,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/interleaved_short_to_complex.h> | ||||
| #include <gnuradio/blocks/char_to_short.h> | ||||
| #include <gnuradio/msg_queue.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <gflags/gflags.h> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <gflags/gflags.h> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <gflags/gflags.h> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <gflags/gflags.h> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gtest/gtest.h> | ||||
|   | ||||
| @@ -34,7 +34,11 @@ | ||||
| #include <chrono> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_sdr_valve.h" | ||||
|   | ||||
| @@ -32,7 +32,11 @@ | ||||
| #include <chrono> | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include "gnss_sdr_valve.h" | ||||
|   | ||||
| @@ -33,7 +33,11 @@ | ||||
|  | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_f.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include "gnss_sdr_valve.h" | ||||
|   | ||||
| @@ -33,9 +33,14 @@ | ||||
|  | ||||
| #include <gtest/gtest.h> | ||||
| #include <gnuradio/top_block.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/blocks/vector_source.h> | ||||
| #include <gnuradio/blocks/vector_sink.h> | ||||
| #else | ||||
| #include <gnuradio/blocks/vector_source_b.h> | ||||
| #include <gnuradio/blocks/vector_source_s.h> | ||||
| #include <gnuradio/blocks/vector_sink_b.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/stream_to_vector.h> | ||||
| #include "unpack_2bit_samples.h" | ||||
|  | ||||
|   | ||||
| @@ -38,7 +38,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/interleaved_char_to_complex.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -39,7 +39,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/interleaved_char_to_complex.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -41,7 +41,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/interleaved_char_to_complex.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -38,7 +38,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/blocks/interleaved_char_to_complex.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
| @@ -35,7 +35,11 @@ | ||||
| #include <gnuradio/top_block.h> | ||||
| #include <gnuradio/blocks/file_source.h> | ||||
| #include <gnuradio/analog/sig_source_waveform.h> | ||||
| #ifdef GR_GREATER_38 | ||||
| #include <gnuradio/analog/sig_source.h> | ||||
| #else | ||||
| #include <gnuradio/analog/sig_source_c.h> | ||||
| #endif | ||||
| #include <gnuradio/msg_queue.h> | ||||
| #include <gnuradio/blocks/null_sink.h> | ||||
| #include <gnuradio/blocks/skiphead.h> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez