[hamradio-commits] [gnss-sdr] branch next updated (c04fcb1 -> 6e41498)

Carles Fernandez carles_fernandez-guest at moszumanska.debian.org
Sun Feb 15 15:32:17 UTC 2015


This is an automated email from the git hooks/post-receive script.

carles_fernandez-guest pushed a change to branch next
in repository gnss-sdr.

      from  c04fcb1   Merge branch 'next' of git://github.com/gnss-sdr/gnss-sdr into next
       new  056158e   Adding SPIR file data source, by Fran Fabra
       new  c00703b   Adding SPIR data file source
       new  6984e78   replacing some C casts by C++ casts
       new  70ff047   adding std::complex<unsigned char>, aka lv_8sc_t, as a native input data type. To be later used with volk_gnsssdr_8ic_* kernels
       new  9601ee3   Include VOLK_INCLUDE_DIRS
       new  b9e7d8a   adding a fir_filter for std::complex<signed char> (aka cbyte). It converts the data type to floats, filters, and converts back to cbyte.
       new  b89e2b0   Adding a filter for stream of shorts
       new  42902c4   Adding a filter for complex short streams
       new  b96ca00   Adding a new data_type_adapter, from interleaved short to std::complex<short>
       new  f29c0c2   Adding missing files
       new  25ac808   Adding a resampler for cbytes and cshorts
       new  75ee6c1   adding a pass_through for all data types
       new  bd01c84   Changing names to emphasize that they are complex types
       new  3dcac85   adding more data types
       new  8f9466b   Ensuring that the unsigned int is 32-bit wide.
       new  fcfbfbc   fixing comparison
       new  fc83b96   Adding more input data types
       new  f54ef85   Working on the freq_xlating_fir filter
       new  792c8c1   adding more data types to the freq_xlating_fir_filter
       new  ee5a9ac   small fix
       new  6b258c6   removing an include that was not required
       new  88789b0   Adding fir_filter tests for different data types
       new  baac164   Improvements to the fir_filter test
       new  e7a3ebb   Working on tests
       new  d58bb85   working on tests
       new  ff0f3ae   Add missing header
       new  8f407f9   working on tests
       new  7a7eeb5   Moving blocks to libs. GpsL1CaPcpsAcquisition now accepts cshorts and cbytes
       new  d84eaea   Working on tests
       new  4e86f81   working on tests
       new  296e6c4   Adding a method to force acquisition from the first sample
       new  7b779bc   working on tests
       new  70bf07a   fixing the test
       new  4b3a581   fixing tests
       new  59a158c   Documenting the new method
       new  d76b606   some cleaning
       new  4a1ca06   Removing Python compiled files
       new  8eaa12e   Removing compiled Python files (were not used)
       new  304261e   Merge branch 'next' of git+ssh://github.com/carlesfernandez/gnss-sdr into next
       new  98d2fd3   Fixed Googletest detection when GTEST_DIR is set
       new  3e5332f   Fixing Gtest detection
       new  1cfdd23   some cleaning
       new  444bccd   empty folders forbidden by debian packaging
       new  6e41498   Merge branch 'next' of git+ssh://alioth.debian.org/git/pkg-hamradio/gnss-sdr into next

The 44 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS                                            |   1 +
 CMakeLists.txt                                     |  14 +-
 conf/gnss-sdr.conf                                 |  18 +-
 conf/{gnss-sdr.conf => gnss-sdr_GPS_L1_SPIR.conf}  | 114 +++++---
 src/algorithms/acquisition/adapters/CMakeLists.txt |  50 ++--
 .../galileo_e1_pcps_ambiguous_acquisition.cc       |   6 +
 .../galileo_e1_pcps_ambiguous_acquisition.h        |   5 +
 ...galileo_e1_pcps_cccwsr_ambiguous_acquisition.cc |   7 +
 .../galileo_e1_pcps_cccwsr_ambiguous_acquisition.h |   5 +
 ...ileo_e1_pcps_quicksync_ambiguous_acquisition.cc |  10 +
 ...lileo_e1_pcps_quicksync_ambiguous_acquisition.h |   5 +
 .../galileo_e1_pcps_tong_ambiguous_acquisition.cc  |   6 +
 .../galileo_e1_pcps_tong_ambiguous_acquisition.h   |   5 +
 .../adapters/gps_l1_ca_pcps_acquisition.cc         | 243 ++++++++++------
 .../adapters/gps_l1_ca_pcps_acquisition.h          |  11 +
 .../gps_l1_ca_pcps_quicksync_acquisition.cc        |   8 +
 .../gps_l1_ca_pcps_quicksync_acquisition.h         |   5 +-
 .../adapters/gps_l1_ca_pcps_tong_acquisition.cc    |   8 +
 .../adapters/gps_l1_ca_pcps_tong_acquisition.h     |   8 +-
 .../acquisition/gnuradio_blocks/CMakeLists.txt     |  38 +--
 ...alileo_e5a_noncoherent_iq_acquisition_caf_cc.cc |  23 ++
 ...galileo_e5a_noncoherent_iq_acquisition_caf_cc.h |   7 +
 .../galileo_pcps_8ms_acquisition_cc.cc             |  24 ++
 .../galileo_pcps_8ms_acquisition_cc.h              |   7 +
 .../gnuradio_blocks/pcps_acquisition_cc.cc         |  23 ++
 .../gnuradio_blocks/pcps_acquisition_cc.h          |   7 +
 .../pcps_acquisition_fine_doppler_cc.h             | 320 +++++++++++----------
 .../gnuradio_blocks/pcps_cccwsr_acquisition_cc.cc  |  23 ++
 .../gnuradio_blocks/pcps_cccwsr_acquisition_cc.h   |   7 +
 .../pcps_multithread_acquisition_cc.cc             |  27 ++
 .../pcps_multithread_acquisition_cc.h              |   7 +
 .../gnuradio_blocks/pcps_opencl_acquisition_cc.cc  |  22 ++
 .../gnuradio_blocks/pcps_opencl_acquisition_cc.h   |   7 +
 .../pcps_quicksync_acquisition_cc.cc               |  22 ++
 .../pcps_quicksync_acquisition_cc.h                |   7 +
 .../gnuradio_blocks/pcps_tong_acquisition_cc.cc    |  31 ++
 .../gnuradio_blocks/pcps_tong_acquisition_cc.h     |   7 +
 src/algorithms/data_type_adapter/CMakeLists.txt    |   3 +
 .../data_type_adapter/adapters/CMakeLists.txt      |  11 +-
 .../{byte_to_short.cc => ibyte_to_cbyte.cc}        |  47 ++-
 .../adapters/{byte_to_short.h => ibyte_to_cbyte.h} |  28 +-
 .../{ishort_to_complex.cc => ishort_to_cshort.cc}  |  38 +--
 .../{byte_to_short.h => ishort_to_cshort.h}        |  27 +-
 .../gnuradio_blocks/CMakeLists.txt                 |  16 +-
 .../interleaved_byte_to_complex_byte.cc            |  71 +++++
 .../interleaved_byte_to_complex_byte.h}            |  41 +--
 .../interleaved_short_to_complex_short.cc          |  71 +++++
 .../interleaved_short_to_complex_short.h}          |  46 ++-
 .../input_filter/adapters/CMakeLists.txt           |   6 +-
 src/algorithms/input_filter/adapters/fir_filter.cc | 245 ++++++++++++++--
 src/algorithms/input_filter/adapters/fir_filter.h  |  21 +-
 .../adapters/freq_xlating_fir_filter.cc            | 211 ++++++++++++--
 .../adapters/freq_xlating_fir_filter.h             |  12 +-
 .../input_filter/gnuradio_blocks/CMakeLists.txt    |   3 +-
 src/algorithms/libs/CMakeLists.txt                 |  47 +--
 src/algorithms/libs/byte_x2_to_complex_byte.cc     |  71 +++++
 .../byte_x2_to_complex_byte.h}                     |  39 +--
 src/algorithms/libs/complex_byte_to_float_x2.cc    |  63 ++++
 .../complex_byte_to_float_x2.h}                    |  39 +--
 .../libs/complex_float_to_complex_byte.cc          |  63 ++++
 .../complex_float_to_complex_byte.h}               |  37 ++-
 src/algorithms/libs/cshort_to_float_x2.cc          |  63 ++++
 .../beamformer.h => libs/cshort_to_float_x2.h}     |  39 +--
 src/algorithms/libs/pass_through.cc                |  11 +-
 src/algorithms/libs/short_x2_to_cshort.cc          |  72 +++++
 .../beamformer.h => libs/short_x2_to_cshort.h}     |  38 +--
 .../python/volk_gnsssdr_modtool/__init__.pyc       | Bin 327 -> 0 bytes
 .../python/volk_gnsssdr_modtool/cfg.pyc            | Bin 3870 -> 0 bytes
 .../volk_gnsssdr_modtool_generate.pyc              | Bin 11076 -> 0 bytes
 src/algorithms/resampler/adapters/CMakeLists.txt   |   1 +
 .../adapters/direct_resampler_conditioner.cc       |  28 +-
 .../resampler/gnuradio_blocks/CMakeLists.txt       |   4 +-
 ...er_ss.cc => direct_resampler_conditioner_cb.cc} |  35 +--
 ...oner_ss.h => direct_resampler_conditioner_cb.h} |  39 +--
 .../direct_resampler_conditioner_cc.cc             |   4 +-
 .../direct_resampler_conditioner_cc.h              |   7 +-
 ...er_ss.cc => direct_resampler_conditioner_cs.cc} |  32 +--
 ...oner_ss.h => direct_resampler_conditioner_cs.h} |  39 +--
 .../signal_source/adapters/CMakeLists.txt          |   2 +
 .../signal_source/adapters/file_signal_source.cc   |  25 +-
 ...signal_source.cc => spir_file_signal_source.cc} | 103 ++++---
 ...e_signal_source.h => spir_file_signal_source.h} |  31 +-
 .../signal_source/adapters/uhd_signal_source.cc    | 165 +++++------
 .../signal_source/gnuradio_blocks/CMakeLists.txt   |   1 +
 ...t_samples.cc => unpack_intspir_1bit_samples.cc} |  66 ++---
 ...bit_samples.h => unpack_intspir_1bit_samples.h} |  28 +-
 src/core/receiver/CMakeLists.txt                   |   1 +
 src/core/receiver/gnss_block_factory.cc            |  44 ++-
 src/main/CMakeLists.txt                            |   2 -
 src/tests/CMakeLists.txt                           |  13 +-
 src/tests/arithmetic/magnitude_squared_test.cc     |   4 +-
 src/tests/gnss_block/fir_filter_test.cc            | 269 ++++++++++++++++-
 .../galileo_e1_dll_pll_veml_tracking_test.cc       |   6 +-
 ...pcps_8ms_ambiguous_acquisition_gsoc2013_test.cc |  40 +--
 ..._e1_pcps_ambiguous_acquisition_gsoc2013_test.cc |  51 ++--
 ...ileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc |  42 ++-
 .../galileo_e1_pcps_ambiguous_acquisition_test.cc  |  46 ++-
 ...s_cccwsr_ambiguous_acquisition_gsoc2013_test.cc |  48 ++--
 ...uicksync_ambiguous_acquisition_gsoc2014_test.cc | 150 +++++-----
 ...cps_tong_ambiguous_acquisition_gsoc2013_test.cc |  74 ++---
 ...e5a_pcps_acquisition_gsoc2014_gensource_test.cc |  22 +-
 src/tests/gnss_block/galileo_e5a_tracking_test.cc  |   4 +-
 src/tests/gnss_block/gnss_block_factory_test.cc    |   7 +-
 .../gps_l1_ca_pcps_acquisition_gsoc2013_test.cc    |  19 +-
 .../gnss_block/gps_l1_ca_pcps_acquisition_test.cc  |  52 ++--
 ...a_pcps_multithread_acquisition_gsoc2013_test.cc |   8 +-
 ..._ca_pcps_quicksync_acquisition_gsoc2014_test.cc | 142 +++++----
 ...ps_l1_ca_pcps_tong_acquisition_gsoc2013_test.cc |  39 +--
 108 files changed, 2938 insertions(+), 1372 deletions(-)
 copy conf/{gnss-sdr.conf => gnss-sdr_GPS_L1_SPIR.conf} (82%)
 copy src/algorithms/data_type_adapter/adapters/{byte_to_short.cc => ibyte_to_cbyte.cc} (64%)
 copy src/algorithms/data_type_adapter/adapters/{byte_to_short.h => ibyte_to_cbyte.h} (76%)
 copy src/algorithms/data_type_adapter/adapters/{ishort_to_complex.cc => ishort_to_cshort.cc} (65%)
 copy src/algorithms/data_type_adapter/adapters/{byte_to_short.h => ishort_to_cshort.h} (75%)
 copy src/algorithms/{signal_source => data_type_adapter}/gnuradio_blocks/CMakeLists.txt (65%)
 create mode 100644 src/algorithms/data_type_adapter/gnuradio_blocks/interleaved_byte_to_complex_byte.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => data_type_adapter/gnuradio_blocks/interleaved_byte_to_complex_byte.h} (50%)
 create mode 100644 src/algorithms/data_type_adapter/gnuradio_blocks/interleaved_short_to_complex_short.cc
 copy src/algorithms/{libs/gnss_sdr_valve.h => data_type_adapter/gnuradio_blocks/interleaved_short_to_complex_short.h} (50%)
 create mode 100644 src/algorithms/libs/byte_x2_to_complex_byte.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => libs/byte_x2_to_complex_byte.h} (56%)
 create mode 100644 src/algorithms/libs/complex_byte_to_float_x2.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => libs/complex_byte_to_float_x2.h} (55%)
 create mode 100644 src/algorithms/libs/complex_float_to_complex_byte.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => libs/complex_float_to_complex_byte.h} (54%)
 create mode 100644 src/algorithms/libs/cshort_to_float_x2.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => libs/cshort_to_float_x2.h} (58%)
 create mode 100644 src/algorithms/libs/short_x2_to_cshort.cc
 copy src/algorithms/{input_filter/gnuradio_blocks/beamformer.h => libs/short_x2_to_cshort.h} (58%)
 delete mode 100644 src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/__init__.pyc
 delete mode 100644 src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/cfg.pyc
 delete mode 100644 src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/python/volk_gnsssdr_modtool/volk_gnsssdr_modtool_generate.pyc
 copy src/algorithms/resampler/gnuradio_blocks/{direct_resampler_conditioner_ss.cc => direct_resampler_conditioner_cb.cc} (74%)
 copy src/algorithms/resampler/gnuradio_blocks/{direct_resampler_conditioner_ss.h => direct_resampler_conditioner_cb.h} (67%)
 rename src/algorithms/resampler/gnuradio_blocks/{direct_resampler_conditioner_ss.cc => direct_resampler_conditioner_cs.cc} (75%)
 rename src/algorithms/resampler/gnuradio_blocks/{direct_resampler_conditioner_ss.h => direct_resampler_conditioner_cs.h} (68%)
 copy src/algorithms/signal_source/adapters/{nsr_file_signal_source.cc => spir_file_signal_source.cc} (77%)
 copy src/algorithms/signal_source/adapters/{file_signal_source.h => spir_file_signal_source.h} (78%)
 copy src/algorithms/signal_source/gnuradio_blocks/{unpack_byte_2bit_samples.cc => unpack_intspir_1bit_samples.cc} (52%)
 copy src/algorithms/signal_source/gnuradio_blocks/{unpack_byte_2bit_samples.h => unpack_intspir_1bit_samples.h} (65%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/gnss-sdr.git



More information about the pkg-hamradio-commits mailing list