Changes between Initial Version and Version 1 of Documentation/dSDR/Iris


Ignore:
Timestamp:
Mar 2, 2015, 1:34:25 PM (9 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/dSDR/Iris

    v1 v1  
     1== Iris ==
     2Iris is a software framework for SDR development from [http://ctvr.ie/ CTVR, the Telecommunications Research Centre at Trinity College, University of Dublin] in Ireland.
     3
     4=== Prerequisites ===
     5
     6
     7{{{
     8apt-get install libqwt-dev protobuf-compiler libprotobuf-dev
     9}}}
     10
     11
     12=== Installing core components ===
     13
     14{{{
     15git clone https://github.com/softwareradiosystems/iris_core.git iris_core
     16cd iris_core
     17mkdir build
     18cd build
     19cmake ../
     20make
     21make test
     22make install
     23}}}
     24
     25=== Installing modules ===
     26
     27{{{
     28git clone https://github.com/softwareradiosystems/iris_modules.git iris_modules
     29cd iris_modules
     30mkdir build
     31cd build
     32cmake ../
     33make
     34make test
     35make install
     36}}}