Merge branch 'next' of https://github.com/srsLTE/srsLTE into next

master
ismagom 9 years ago
commit 8f74bf7348

@ -30,6 +30,8 @@ Hardware
The library currently uses Ettus Universal Hardware Driver (UHD). Thus, any hardware supported by UHD can be used. There is no sampling rate conversion, therefore the hardware should support 30.72 MHz clock in order to work correctly with LTE sampling frequencies and decode signals from live LTE base stations. We are using the B210 USRP.
*News*: We have recently added support for the bladeRF in the `devel` branch. It's still experimental so any feedback will be very appreciated.
Download & Install Instructions
=================================

@ -30,6 +30,7 @@ endif()
# SOURCE = list of source files
# LIBRARIES = libraries needed to link mex library
FUNCTION(BuildMex)
if(NOT DisableMEX)
set(oneValueArgs MEXNAME)
set(multiValueArgs SOURCES LIBRARIES)
cmake_parse_arguments(BuildMex "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
@ -57,5 +58,6 @@ FUNCTION(BuildMex)
target_link_libraries(${BuildMex_MEXNAME}-oct ${BuildMex_LIBRARIES} ${OCTAVE_LIBRARIES})
install(TARGETS ${BuildMex_MEXNAME}-oct DESTINATION "${MEX_DIR}/srslte/")
endif (OCTAVE_FOUND)
endif (NOT DisableMEX)
ENDFUNCTION(BuildMex)

Loading…
Cancel
Save