1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-22 01:54:52 +00:00

Started implementing the code that uses the FPGA HW accelerators and the unit tests. For now the code contains a cloned version of the tracking tests using short complex data types plus a few new class variable definitions

This commit is contained in:
mmajoral
2017-02-13 17:20:49 +01:00
parent 8c2f1f992f
commit d22f4f5f2b
14 changed files with 2014 additions and 4 deletions

View File

@@ -30,9 +30,10 @@ if(ENABLE_CUDA)
endif(ENABLE_CUDA)
set(TRACKING_LIB_SOURCES
cpu_multicorrelator.cc
cpu_multicorrelator_16sc.cc
cpu_multicorrelator_16sc.cc
lock_detectors.cc
tcp_communication.cc
tcp_packet_data.cc
@@ -43,6 +44,10 @@ set(TRACKING_LIB_SOURCES
tracking_loop_filter.cc
)
if(ENABLE_FPGA)
SET(TRACKING_LIB_SOURCES ${TRACKING_LIB_SOURCES} fpga_multicorrelator_8sc.cc)
endif(ENABLE_FPGA)
include_directories(
$(CMAKE_CURRENT_SOURCE_DIR)
${CMAKE_SOURCE_DIR}/src/core/system_parameters