[Discuss-gnuradio] add the outcome of bit rate in ofdm benchmark_tx.py

2017-04-19 Thread ylj
Hi everyone, I am new comer to gnuradio, right now I want to use USRP N210 to send and receive package. I want to get the average data rate when I transmit. Does anyone know how to get how many bits I transmit in payload? Thanks. BTW, I use benchmark_tx and benchmark_rx to transmit.

Re: [Discuss-gnuradio] UDP streaming and queue-ing incoming ts stream to be tx'ed by dvb-s2

2017-04-19 Thread on4bhm
ok, I got it did some reading in the mean time. Who (in my setup) is the 'client' and who is the 'source'? I guess: the program who makes the ts stream is the 'source'/server and the gnuradio is the 'client' who requests data from the server? correct? Van: "Marcus Müller"

Re: [Discuss-gnuradio] UDP streaming and queue-ing incoming ts stream to be tx'ed by dvb-s2

2017-04-19 Thread Marcus Müller
ZMQ is a kind of a socket framework; In GRC, you'll find the category "ZMQ Blocks", and you'll find infos on how to use it from .Net on http://zguide.zeromq.org/page:all (e.g. many of the examples in the beginner's guide are also available in C#) Cheers, Marcus On 04/19/2017 10:23 PM,

Re: [Discuss-gnuradio] ATSC Decode Issues

2017-04-19 Thread Ron Economos
Unless you have a many core CPU (greater than four), the ATSC decoder usually doesn't run in real time. You have to capture an IQ stream to disk first and then demodulate it in non real-time. Ron On 04/19/2017 09:14 AM, Ghost Op wrote: Hi all, I'm having an issue getting ATSC to decode and

Re: [Discuss-gnuradio] UDP streaming and queue-ing incoming ts stream to be tx'ed by dvb-s2

2017-04-19 Thread on4bhm
Hi, To be clear, the UDP or TCP sender is a .net program on windows... the receiver is of course gnuradio on Linux with limesdr or hacksdr. Can you clearify what this ZMQ is? where can I find info? Will it be usable in my given context? kind regards Van: "Marcus Müller"

Re: [Discuss-gnuradio] UDP streaming and queue-ing incoming ts stream to be tx'ed by dvb-s2

2017-04-19 Thread Marcus Müller
Hi Guy, you're right, UDP alone doesn't work here. However, the ZMQ PULL source would work :) ZMQ is available for practically every major programming language, so that might be an easy to use choice (or you use the matching ZMQ PUSH source in GNU Radio on the computer that sends the TS file via

Re: [Discuss-gnuradio] How to build a QT GUI fsk/nrz transmitter for a given device

2017-04-19 Thread Marcus Müller
Hi Dane, good work! Especially the custom blocks. Regarding 1.: I'm not 100% sure I understand what you mean. Could you maybe elaborate on what you want to be able to do? Regarding 2.: Since this really seems to be an FSK system, try using the "Frequency Mod" block, fed (for now) from a vector

[Discuss-gnuradio] UDP streaming and queue-ing incoming ts stream to be tx'ed by dvb-s2

2017-04-19 Thread on4bhm
Hi Group, I want to send a ts stream with gnuradio and dvb-s2. I can already record (make) a ts file and copy it to Linux to be send by gnuradio running dvb-s2. This works ok. But now I want to send the ts file live to the Linux gnuradio pc via network. But I think I need some queueing or

[Discuss-gnuradio] How to build a QT GUI fsk/nrz transmitter for a given device

2017-04-19 Thread Dane Goodwin
Hey all I'm new to SDR stuff, and am trying to learn as much as I can. As hands-on practice is best, I found a cheap and simple rf device to practice with. Specifically, this remote . It transmits an

Re: [Discuss-gnuradio] Using filesink to store noise samples

2017-04-19 Thread Ammar Mahmood
Dear Marcus, Thanks for the explanation. I was making .dat file correctly from file sink but was reading it incorrectly in Matlab. I was using fread command to read the file but it turned out specific matlab scripts (read_complex_binary.m to be exact) are to be used when parsing grc saved complex

Re: [Discuss-gnuradio] DVB-T2 encoder

2017-04-19 Thread Marcus Müller
Hi Sakthivel, On 04/19/2017 06:41 PM, sakthivel velumani wrote: > 1. I am new to GNU radio. So from where could i start inorder to work > towards the task? I had installed GNU radio. http://tutorials.gnuradio.org then, do some decoding and/or encoding. Figure out what you want to improve. then,

[Discuss-gnuradio] DVB-T2 encoder

2017-04-19 Thread sakthivel velumani
Hi I learned about the Rohde & Schwartz engineering competition 2017. This year the task is to enhance the DVB T2 coder in GNU radio for better performance. I have few doubts. Anyone's help is appreciated. 1. I am new to GNU radio. So from where could i start inorder to work towards the task? I

[Discuss-gnuradio] ATSC Decode Issues

2017-04-19 Thread Ghost Op
Hi all, I'm having an issue getting ATSC to decode and I was hoping someone who has done it successfully may have some pointers. Here's the scenario Basic SDR antenna connected to an LNA4ALL feeding into an Airspy sampling at 10 MSPS using the attached flowgraph. I get a TS file and don't

Re: [Discuss-gnuradio] why the prototype of pmt_t is intrusive_ptr

2017-04-19 Thread Marcus Müller
That was done for performance reasons, so that the refcount and the object are close together, if I remember correctly. You can of course write your own pmt_t alternative, or change GNU Radio's source code, but I'd argue that would probably be quite some work. Why do you ask? Best regards,

[Discuss-gnuradio] why the prototype of pmt_t is intrusive_ptr

2017-04-19 Thread hutiankun
Hi, why the prototype of pmt_t is intrusive_ptr? Is it possible to change it to shared_ptr? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Using filesink to store noise samples

2017-04-19 Thread Marcus Müller
The file sink doesn't produce mat files: https://wiki.gnuradio.org/index.php/FAQ#What_is_the_file_format_of_a_file_sink.3F_How_can_I_read_files_produced_by_a_file_sink.3F On 19.04.2017 08:46, Ammar Mahmood wrote: > Dear all, > > I am trying to save noise samples using file sink to verify that

Re: [Discuss-gnuradio] Using filesink to store noise samples

2017-04-19 Thread Julian Arnold
Hey Ammar, do you store real and imaginary parts of the complex output of the USRP separately? How do you read the file in Matlab? It would probably help if you could elaborate on your problem a little more. Cheers, On 04/19/2017 08:46 AM, Ammar Mahmood wrote: > Dear all, > > I am trying to

[Discuss-gnuradio] Using filesink to store noise samples

2017-04-19 Thread Ammar Mahmood
Dear all, I am trying to save noise samples using file sink to verify that noise follows Gaussian distribution. I mat file is made by the file sink block. When I read this mat file in mat lab, it only shows the positive samples and does not have negative samples whereas it should have negative