Re: [Discuss-gnuradio] UHD USRP Sink Stream Tagging

2012-07-17 Thread King Qiu
Hi Josh, I have done the same work as Alex. I modified the code in gr_message_source. I added a tx_sob tag and a tx_time tag to the first byte of the message, and a tx_eob tag to the last byte of the message. Assuming: 1. there are 100 bytes in a message(or we call it a packet) 2. bpsk modulation i

Re: [Discuss-gnuradio] what is meant by "LLLLLLLLLLLLL...."?

2012-07-17 Thread Josh Blum
On 07/17/2012 04:20 PM, Zing Yu wrote: > Hi Josh, > > The "late" packet gets sent anyway. Right? At least I have verified Late packets get dropped. Think of this as a catch-up mechanism. Otherwise, all subsequent packets would also be late. The late packet error follows the same policy as the

Re: [Discuss-gnuradio] Cannot compile Volk

2012-07-17 Thread Johnathan Corgan
On Tue, Jul 17, 2012 at 10:35 AM, Josh Blum wrote: > Here is a commit with comments justifying my changes. I hope the > gnuradio devs will accept this: > > http://gnuradio.org/cgit/jblum.git/commit/?h=volk_mmx_fix&id=cf8b2a8ff57ff6d3fd4b78a897854cc9a6f49fe1 > This was merged into master->next.

Re: [Discuss-gnuradio] what is meant by "LLLLLLLLLLLLL...."?

2012-07-17 Thread Zing Yu
Hi Josh, The "late" packet gets sent anyway. Right? At least I have verified this at the receive side. Further, I hope that one L is printed for each "late" burst (i.e., no. of L's equals no. of late "bursts"). Correct? Finally, how can one print the metadata to find which of the bursts were la

Re: [Discuss-gnuradio] what is meant by "LLLLLLLLLLLLL...."?

2012-07-17 Thread Josh Blum
On 07/17/2012 03:50 PM, Zing Yu wrote: > All, > > I have an application where I need to send timed-bursts, so, I have > modified tags_demo.cc a bit according to my needs. Now, when I run > the transmitter flow-graph in order to send timed-bursts, I > occasionally see a sequence of "L..."

[Discuss-gnuradio] what is meant by "LLLLLLLLLLLLL...."?

2012-07-17 Thread Zing Yu
All, I have an application where I need to send timed-bursts, so, I have modified tags_demo.cc a bit according to my needs. Now, when I run the transmitter flow-graph in order to send timed-bursts, I occasionally see a sequence of "L..." in the console. I assume it is some sort of error

Re: [Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Christian Gagneraud
On 17/07/12 22:24, Nick Foster wrote: Christian, Are you using the version found here? https://github.com/bistromath/gr-ais If not, please use this version, as it is significantly more up-to-date than the one on CGRAN. I'm going to change the CGRAN page to point to the Github repository. Int

Re: [Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Nick Foster
Christian, Are you using the version found here? https://github.com/bistromath/gr-ais If not, please use this version, as it is significantly more up-to-date than the one on CGRAN. I'm going to change the CGRAN page to point to the Github repository. --n On Tue, Jul 17, 2012 at 1:42 PM, Christ

Re: [Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Josh Blum
On 07/17/2012 01:42 PM, Christian Gagneraud wrote: > On 17/07/12 21:31, Josh Blum wrote: >> >> >> On 07/17/2012 01:27 PM, Christian Gagneraud wrote: >>> Hi, >>> >>> I tried to build https://cgran.org/wiki/AIS against gnuradio-3.6, and i >>> fails. >>> As 3.6 brings in a new build system, I decide

Re: [Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Christian Gagneraud
On 17/07/12 21:31, Josh Blum wrote: On 07/17/2012 01:27 PM, Christian Gagneraud wrote: Hi, I tried to build https://cgran.org/wiki/AIS against gnuradio-3.6, and i fails. As 3.6 brings in a new build system, I decided to give it a go on the AIS module. I based everything on gr-howto-write-a-bl

Re: [Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Josh Blum
On 07/17/2012 01:27 PM, Christian Gagneraud wrote: > Hi, > > I tried to build https://cgran.org/wiki/AIS against gnuradio-3.6, and i > fails. > As 3.6 brings in a new build system, I decided to give it a go on the > AIS module. I based everything on gr-howto-write-a-block > > I can build and in

[Discuss-gnuradio] Porting cgran AIS to the new cmake build system

2012-07-17 Thread Christian Gagneraud
Hi, I tried to build https://cgran.org/wiki/AIS against gnuradio-3.6, and i fails. As 3.6 brings in a new build system, I decided to give it a go on the AIS module. I based everything on gr-howto-write-a-block I can build and install everything, here is what get installed: cgagneraud@pluton:~

[Discuss-gnuradio] Parent Class For UHD USRP Source/Sink

2012-07-17 Thread Daniel Labarowski
Hello, I am working on a C++ block which will call the set_center_freq method of a uhd_usrp_source or uhs_usrp_sink passed to the block with a pointer. Both the source and sink contain the set_current_freq method, so from an identity standpoint it really doesn't matter which one is passed to t

Re: [Discuss-gnuradio] UHD USRP Sink Stream Tagging

2012-07-17 Thread Josh Blum
On 07/17/2012 02:59 AM, Alex Teo wrote: > Hello all, > > I have been trying to implement a custom block based on > gr_message_source that will be connected to the UHD USRP sink block. > It inserts tx_sob and tx_eob tags together with the message contents > into the output stream. I have a few qu

[Discuss-gnuradio] RBW (Resolution Bandwitch) with USRP

2012-07-17 Thread Julio Hector Aguilar Renteria
hi all Someone has calculated the RBW (Resolution Bandwitch) with USRP ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Cannot compile Volk

2012-07-17 Thread Josh Blum
On 07/17/2012 12:20 AM, Pol Henarejos wrote: > Dear Josh, > > Your patch works for me. Now I am compiling next branch. Hope you could > commit to git. > > Thanks for your effort. > > Thanks for testing. Here is a commit with comments justifying my changes. I hope the gnuradio devs will acce

[Discuss-gnuradio] CGRAN now breaking projects in to categories, feedback wanted!

2012-07-17 Thread George Nychis
Hi all, CGRAN has grown significantly beyond my expectations over the past 4 years! It started off as two personal projects with the hope of providing somewhere for people to develop applications outside of the main GNU Radio code base. Now we have 38 projects and a few others in development but

[Discuss-gnuradio] UHD USRP Sink Stream Tagging

2012-07-17 Thread Alex Teo
Hello all, I have been trying to implement a custom block based on gr_message_source that will be connected to the UHD USRP sink block. It inserts tx_sob and tx_eob tags together with the message contents into the output stream. I have a few questions with regards to the proper use of the tx strea

[Discuss-gnuradio] DAB Single Frequency Network transmission

2012-07-17 Thread Mathias Coinchon
Hello, For your information, here's an application for DAB (Digital Audio Broadcasting) Single Frequency Network transmission using newest USRP with external synchronisation: http://tech.ebu.ch/news/ebu-collaborates-on-successful-dab-sfn-m-17jul12 It's working well in the lab but we have not be

Re: [Discuss-gnuradio] Cannot compile Volk

2012-07-17 Thread Pol Henarejos
Dear Josh, Your patch works for me. Now I am compiling next branch. Hope you could commit to git. Thanks for your effort. -- Pol Henarejos Research Engineer, MSc pol.henare...@cttc.es Centre Tecnològic de Telecomunicacions de Catalunya (CTTC) Engineering Unit Parc Mediterrani de la Tecnologia

Re: [Discuss-gnuradio] Viewing GNURadio Blocks in C++

2012-07-17 Thread chongmin
Dear Stefano, Thank you for your guidance - I realized I downloaded the binary version of GNURadio from apt-get, which did not come with the folder gnuradio-core. After installing GNURadio from source I managed to find the corresponding C++ file. Chong Min Stefano-69 wrote: > > Hi Chong, > >