kopia lustrzana https://github.com/rpp0/gr-lora
rodzic
f821a8a4af
commit
88047f2a9e
40
.travis.yml
40
.travis.yml
|
@ -9,18 +9,16 @@ compiler: g++
|
||||||
|
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
|
dist: trusty
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- cd ../
|
- cd ../
|
||||||
- sudo mv gr-lora ../
|
- sudo mv gr-lora ../
|
||||||
- cd ../
|
- cd ../
|
||||||
|
- sudo apt-get update
|
||||||
# Add repos for more up-to-date versions of g++ and libboost
|
|
||||||
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
||||||
- sudo add-apt-repository -y ppa:boost-latest/ppa
|
|
||||||
- sudo apt-get update -qq
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sudo apt-get install -qq g++-4.8
|
- sudo apt-get install g++-4.8
|
||||||
- export CXX="g++-4.8"
|
- export CXX="g++-4.8"
|
||||||
- export CC="gcc-4.8"
|
- export CC="gcc-4.8"
|
||||||
# Report correct versions are installed
|
# Report correct versions are installed
|
||||||
|
@ -34,32 +32,11 @@ install:
|
||||||
- sudo apt-get install fftw3 fftw-dev libfftw3-dev
|
- sudo apt-get install fftw3 fftw-dev libfftw3-dev
|
||||||
|
|
||||||
- sudo apt-get install libboost1.55-all-dev
|
- sudo apt-get install libboost1.55-all-dev
|
||||||
|
- sudo apt-get install gnuradio
|
||||||
|
- sudo apt-get install gnuradio-dev
|
||||||
|
- sudo apt-get install liblog4cpp5
|
||||||
|
- sudo apt-get install liblog4cpp5-dev
|
||||||
- sudo ldconfig
|
- sudo ldconfig
|
||||||
# This installs and old version, and is therefore deprecated
|
|
||||||
# - sudo apt-get install gnuradio
|
|
||||||
# - sudo ldconfig
|
|
||||||
|
|
||||||
# Manual VOLK install
|
|
||||||
# - git clone https://github.com/gnuradio/volk.git
|
|
||||||
# - cd volk/
|
|
||||||
# - git checkout v1.3
|
|
||||||
# - mkdir build && cd build
|
|
||||||
# - cmake ../
|
|
||||||
# - make && sudo make install
|
|
||||||
# - sudo ldconfig
|
|
||||||
# - cd ../../
|
|
||||||
|
|
||||||
# Manual GNURadio install
|
|
||||||
- git clone https://github.com/gnuradio/gnuradio.git
|
|
||||||
- cd gnuradio
|
|
||||||
- git pull --recurse-submodules=on
|
|
||||||
- git submodule foreach git pull origin master
|
|
||||||
- git submodule update --init --recursive
|
|
||||||
- mkdir build && cd build
|
|
||||||
- cmake -DENABLE_INTERNAL_VOLK=ON -DENABLE_GR_FFT=ON -DENABLE_GR_FILTER=ON ../
|
|
||||||
- make && sudo make install
|
|
||||||
- sudo ldconfig
|
|
||||||
- cd ../../
|
|
||||||
|
|
||||||
# Manual liquidDSP install
|
# Manual liquidDSP install
|
||||||
- git clone https://github.com/jgaeddert/liquid-dsp.git
|
- git clone https://github.com/jgaeddert/liquid-dsp.git
|
||||||
|
@ -78,7 +55,6 @@ before_script:
|
||||||
script:
|
script:
|
||||||
- make
|
- make
|
||||||
- sudo make install
|
- sudo make install
|
||||||
# - make test # Will fail
|
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
|
@ -32,6 +32,7 @@ Installation
|
||||||
The following dependencies are required:
|
The following dependencies are required:
|
||||||
- numpy
|
- numpy
|
||||||
- scipy
|
- scipy
|
||||||
|
- log4cpp
|
||||||
- [liquid-dsp](https://github.com/jgaeddert/liquid-dsp)
|
- [liquid-dsp](https://github.com/jgaeddert/liquid-dsp)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -51,8 +51,8 @@ namespace gr {
|
||||||
|
|
||||||
void controller_impl::handle_control(pmt::pmt_t msg){
|
void controller_impl::handle_control(pmt::pmt_t msg){
|
||||||
if(pmt::symbol_to_string(pmt::car(msg)).compare("cfo") == 0) {
|
if(pmt::symbol_to_string(pmt::car(msg)).compare("cfo") == 0) {
|
||||||
//std::cout << "Setting CFO " << pmt::to_float(pmt::cdr(msg)) << std::endl;
|
//std::cout << "Setting CFO " << pmt::to_double(pmt::cdr(msg)) << std::endl;
|
||||||
((channelizer_impl*)d_parent)->apply_cfo(pmt::to_float(pmt::cdr(msg))); // TODO: Pretty hacky cast, can we do this in a cleaner way?
|
((channelizer_impl*)d_parent)->apply_cfo(pmt::to_double(pmt::cdr(msg))); // TODO: Pretty hacky cast, can we do this in a cleaner way?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue