Difference between revisions of "OP25 How To Build"

From SpenchWiki
Jump to: navigation, search
(GNURadio OP25 How To Build)
 
Line 4: Line 4:
  
 
the build-gnuradio script is hosted on http://www.sbrac.org and is avalible for review by clicking this link.
 
the build-gnuradio script is hosted on http://www.sbrac.org and is avalible for review by clicking this link.
[http://www.sbrac.org/files/build-gnuradio http://www.sbrac.org/files/build-gnuradio build-gnuradio]
+
[http://www.sbrac.org/files/build-gnuradio build-gnuradio]
  
  
Line 27: Line 27:
 
Next we need to download and run OP25.
 
Next we need to download and run OP25.
  
This can be done with the following command.
+
This can be done by running another build script [http://wiki.spench.net/files/build-op25 build-op25].
  
 
<math>wget http://wiki.spench.net/files/build-op25 && chmod a+x ./build-op25 && ./build-op25 -v all</math>
 
<math>wget http://wiki.spench.net/files/build-op25 && chmod a+x ./build-op25 && ./build-op25 -v all</math>

Revision as of 13:33, 17 December 2012

To Install OP25 you need to first build and install GNURadio.

The easiest way to build GNURadio is to use the build-gnuradio script.

the build-gnuradio script is hosted on http://www.sbrac.org and is avalible for review by clicking this link. build-gnuradio


We can automate its download and excution with the following command. This will build and install gnuradio as well as extra features like support for gr-baz and the rtl_source so that gnuradio can be used with usb sdr rtl hardware.

first make a directory by using the mkdir command in a terminal window. (You can start terminal in Ubuntu with shortcut (Control + Alt + T)

<math>mkdir src</math>

would make a new directory named src

<math>cd src</math>

would then change to this new folder

next we can download, make executable, and then execute the build-gnuradio script with the following command.

<math>wget http://www.sbrac.org/files/build-gnuradio && chmod a+x ./build-gnuradio && ./build-gnuradio -v all</math>

This script can take some time to run but with the -v command you should see progress on the screen.

Next we need to download and run OP25.

This can be done by running another build script build-op25.

<math>wget http://wiki.spench.net/files/build-op25 && chmod a+x ./build-op25 && ./build-op25 -v all</math>