[Discuss-gnuradio] Data transfer through Pre-cog

2013-07-20 Thread GNU radio
Hi I am trying from the past week to use the pre-cog library for data transfer between two USRP N210 devices. I have tried a number of configurations by replacing many blocks and modifying the Python code. I managed to transmit just a single packet and then the transmitter stops with no

Re: [Discuss-gnuradio] Data transfer through Pre-cog

2013-07-20 Thread John Malsbury
E-mail me the flow graph you are using - john.mals...@ettus.com On Sat, Jul 20, 2013 at 1:04 AM, GNU radio gnuradio.g...@gmail.com wrote: Hi I am trying from the past week to use the pre-cog library for data transfer between two USRP N210 devices. I have tried a number of configurations

[Discuss-gnuradio] Problem faced with clock_recovery_mm at low data rates

2013-07-20 Thread Waqas Bin Abbas
Hi all, We have encountered an interesting problem in the clock_recovery_mm block used in our BFSK system. What happening is that, at lower data rates (i.e. at less than 54bps) we are unable to decode the received data correctly, however at higher data rates data is decoded fine. What we are

Re: [Discuss-gnuradio] 3.7 build failure ICE_ICESTORM-NOTFOUND etc.

2013-07-20 Thread Tom Rondeau
On Thu, Jul 18, 2013 at 11:23 AM, Barry Jackson zen25...@zen.co.uk wrote: On 18/07/13 15:19, Tom Rondeau wrote: Do you know what version of ICE is installed on your system? GNU Radio explicitly looks for version 3.4, so if you're using 3.5 it won't work by default. I've tested and compiled

Re: [Discuss-gnuradio] Gnuradio 3.6.x recipe for pybombs ?

2013-07-20 Thread M Dammer
This does not work. I am getting a branch not found, building HEAD instead like error and then it builds 3.7. It looks as the gitbranch part of the recipe really only works with branches while the version numbers are tags. Does pybombs has a similar command than gitbranch to define a tag in a

Re: [Discuss-gnuradio] Problem faced with clock_recovery_mm at low data rates

2013-07-20 Thread Tom Rondeau
On Sat, Jul 20, 2013 at 9:44 AM, Waqas Bin Abbas waqas.abb...@nu.edu.pk wrote: Hi all, We have encountered an interesting problem in the clock_recovery_mm block used in our BFSK system. What happening is that, at lower data rates (i.e. at less than 54bps) we are unable to decode the received

[Discuss-gnuradio] Can I add frequency offset at sender in ofdm example

2013-07-20 Thread Yingjie Chen
Hi, guys Thanks in advance. I plan to do a experiment in usrp that intentionally adding some frequency offset in data symbol before transmission. Is that feasible to implement it in gnuradio? Which block should I modify at sender side? Sent from my iPhone

Re: [Discuss-gnuradio] Gnuradio 3.6.x recipe for pybombs ?

2013-07-20 Thread Nathan West
On Sat, Jul 20, 2013 at 10:26 AM, M Dammer i...@mdammer.net wrote: This does not work. I am getting a branch not found, building HEAD instead like error and then it builds 3.7. It looks as the gitbranch part of the recipe really only works with branches while the version numbers are tags. Does

[Discuss-gnuradio] Video streaming through gr-extras tuntap in pre-cog

2013-07-20 Thread GNU radio
Hi I am trying to stream a VLC video stream to the gr-extras tuntap device. I have modified the simple_trx demo to include tuntap device and run the flow graph as a root. I assign the tap device the required ip address but I am not sure how to assign a port number to it. Then I configure the

Re: [Discuss-gnuradio] Video streaming through gr-extras tuntap in pre-cog

2013-07-20 Thread John Malsbury
Dear GNU Radio Guru, For the sake of this list, I'm going to have to ask you to send all support requests for pre-cog to john.malsb...@ettus.com. I'll be getting to the other three e-mails you sent last night in a little while. -John On Sat, Jul 20, 2013 at 9:05 AM, GNU radio

Re: [Discuss-gnuradio] Gnuradio 3.6.x recipe for pybombs ?

2013-07-20 Thread M Dammer
thanks for the suggestion. I already solved the problem here, by putting this configure section in the recipe: configure { git checkout tags/v3.6.5.1 cmake .. -DCMAKE_BUILD_TYPE=$cmakebuildtype -DCMAKE_INSTALL_PREFIX=$prefix $config_opt } On 20/07/13 17:04, Nathan West wrote: On Sat,

Re: [Discuss-gnuradio] Can I add frequency offset at sender in ofdm example

2013-07-20 Thread Tom Rondeau
On Sat, Jul 20, 2013 at 10:43 AM, Yingjie Chen ocg...@gmail.com wrote: Hi, guys Thanks in advance. I plan to do a experiment in usrp that intentionally adding some frequency offset in data symbol before transmission. Is that feasible to implement it in gnuradio? Which block should I modify at

Re: [Discuss-gnuradio] Gnuradio 3.6.x recipe for pybombs ?

2013-07-20 Thread Tim Newman
On 07/20/2013 12:38 PM, M Dammer wrote: thanks for the suggestion. I already solved the problem here, by putting this configure section in the recipe: configure { git checkout tags/v3.6.5.1 cmake .. -DCMAKE_BUILD_TYPE=$cmakebuildtype -DCMAKE_INSTALL_PREFIX=$prefix $config_opt }

Re: [Discuss-gnuradio] Gnuradio 3.6.x recipe for pybombs ?

2013-07-20 Thread Tom Rondeau
On Sat, Jul 20, 2013 at 3:05 PM, Tim Newman tim.new...@gmail.com wrote: On 07/20/2013 12:38 PM, M Dammer wrote: thanks for the suggestion. I already solved the problem here, by putting this configure section in the recipe: configure { git checkout tags/v3.6.5.1 cmake ..

[Discuss-gnuradio] GRCon12 Videos

2013-07-20 Thread Tom Rondeau
Hi everyone, I've finally started editing, cutting, and posting the videos from last year's GRCon12 to Youtube. Only the presentations from day 1 of the conference are live right now. I will post individual links to each video on the conference website under the Abstracts section:

[Discuss-gnuradio] Using GMSK Mod to send digital data (e.g. an ASCII string)

2013-07-20 Thread embyte
Hello list, I would like to transmit some data using gnu-radio. My data is a binary representation of an ASCII string. I wrote my own block that builds the frame (header, payload, CRC, trailer) as an array of 256 bytes (0s or 1s): gr_make_io_signature(0, 0, 0) gr_make_io_signature(1, 1,

Re: [Discuss-gnuradio] Problem faced with clock_recovery_mm at low data rates

2013-07-20 Thread Adeel Anwar
Waqas, U can use PFB_clock_sync instead of MM. PFB_clock_sync implements the maximum likelihood estimation algorithms, so using this block increasing sps should not produce incorrect results. http://gnuradio.org/doc/doxygen/classgr_1_1digital_1_1pfb__clock__sync__ccf.html -Adeel On Sat, Jul

Re: [Discuss-gnuradio] Using GMSK Mod to send digital data (e.g. an ASCII string)

2013-07-20 Thread Adeel Anwar
1. Still I have to insert a Packer Encoder between my code and the GMSK mod? If yes, with which parameters? The GMSK mod is configured with Samples/Sym=50 , BT=0.4. No. U can make custom packet structure and in that case u need not to use Packet-Encoder. 2. Can someone explain me how to use the