Re: [Discuss-gnuradio] GNU Radio IIR Filter Taps

2015-05-22 Thread Keyur Parikh
Mark, Thanks for your reply. Quick question: the second term isn't b1*x(n-1)? Keyur On Fri, May 22, 2015 at 10:30 AM, Mark Haun hau...@keteu.org wrote: Keyur Parikh [kpari...@gmail.com] wrote: I'm in fm_emph.py and can see the taps listed as btaps = [b0, b1] ataps = [1, a1] This

Re: [Discuss-gnuradio] GNU Radio IIR Filter Taps

2015-05-22 Thread Mark Haun
Sorry, you're right, it should be b1*x(n-1). --Mark Keyur Parikh [kpari...@gmail.com] wrote: Thanks for your reply. Quick question: the second term isn't b1*x(n-1)? On Fri, May 22, 2015 at 10:30 AM, Mark Haun hau...@keteu.org wrote: Keyur Parikh [kpari...@gmail.com] wrote: I'm in

Re: [Discuss-gnuradio] [USRP-users] N200 with DBSRX2 raw video

2015-05-22 Thread Marcus D. Leech
On 05/22/2015 05:13 PM, Venkatesh Sandilya wrote: I meant that I would like the output of the log 10 block to be terminated by, lets say some value of a resistor before it goes to the scope. Is that even possible or would that be a hardware set up? This is all digital. If you find that the

Re: [Discuss-gnuradio] Need of delay=58 in the PSK Symbol Recovery Guided Tutorial

2015-05-22 Thread Martin Braun
On 22.05.2015 17:38, Francisco Albani wrote: Hi, I managed to successfully replicate the results of this tutorial: https://gnuradio.org/redmine/projects/gnuradio/wiki/Guided_Tutorial_PSK_Demodulation and, of course I understand the reason for a delay between the bits of the source and the

Re: [Discuss-gnuradio] Need of delay=58 in the PSK Symbol Recovery Guided Tutorial

2015-05-22 Thread Martin Braun
On 22.05.2015 18:13, Francisco Albani wrote: Hi Martin and thanks for your answer. What those zeros added to the original stream align to in the received one? When you init a delay block with a positive value, it creates a 'history' (this is actually also the correct GNU Radio term). This is,

Re: [Discuss-gnuradio] Need of delay=58 in the PSK Symbol Recovery Guided Tutorial

2015-05-22 Thread Francisco Albani
Hi Martin and thanks for your answer. What those zeros added to the original stream align to in the received one? In other words, where are those 58 spurious bits at the beginning of the received stream coming from? Are they just the result of transient behavior inside the sync blocks?

[Discuss-gnuradio] Error using Packet Encoder -- Packet Decoder

2015-05-22 Thread Surya Agam
Hello everyone, I want to simulate file transmission using BPSK modulation, with block diagram File Source -- Packet Encoder -- BPSK Mod -- BPSK Demod -- Packet Decoder -- File Sink But the result is 0 kB. Then I remove the Encoder-Decoder and Modulation block. File Source -- File Sink Then

Re: [Discuss-gnuradio] Error using Packet Encoder -- Packet Decoder

2015-05-22 Thread Laur Joost
Have you set the preamble and access code? The leave blank for automatic didn't work for me. Laur 23.05.2015 6:53 kirjutas kuupäeval Surya Agam surya11.01a...@gmail.com: Hello everyone, I want to simulate file transmission using BPSK modulation, with block diagram File Source -- Packet

[Discuss-gnuradio] Need of delay=58 in the PSK Symbol Recovery Guided Tutorial

2015-05-22 Thread Francisco Albani
Hi, I managed to successfully replicate the results of this tutorial: https://gnuradio.org/redmine/projects/gnuradio/wiki/Guided_Tutorial_PSK_Demodulation and, of course I understand the reason for a delay between the bits of the source and the receiver. But then I was struck by this:

Re: [Discuss-gnuradio] How to declare_sample_delay in C++?

2015-05-22 Thread Martin Braun
Not sure what you're asking, the command is wrapped from C++ to Python, and hence the same in both domains (see also http://gnuradio.org/doc/doxygen/classgr_1_1block.html#acad5d6e62ea885cb77d19f72451581c2). Also, 0 is the default. M On 22.05.2015 11:26, khalid.el-darymli wrote: Hi list, I

Re: [Discuss-gnuradio] GNU Radio IIR Filter Taps

2015-05-22 Thread Mark Haun
Keyur Parikh [kpari...@gmail.com] wrote: I'm in fm_emph.py and can see the taps listed as btaps = [b0, b1] ataps = [1, a1] This looks like MATLAB form. If so, the difference equation should be y(n) = b0*x(n) + b1*x(n) - a1*y(n-1) Mark ___

Re: [Discuss-gnuradio] OFDM Transmitter and Receiver - poor synchronization with USRP1

2015-05-22 Thread Martin Braun
On 22.05.2015 10:54, Michal Vaclík wrote: Yes, I am using default flowgraphs (examples) just adding Multiply Const block to avoid clipping due to high PAPR and obviously UHD blocks. Using FFT of 64 and default carrier configuration, sync does get better if I stretch this to wider bandwidths by

[Discuss-gnuradio] How to declare_sample_delay in C++?

2015-05-22 Thread khalid.el-darymli
Hi list, I am doing some (polyphase) decimation with GNURadio in C++. I constructed my filters, I wrote some wrapper, and my script compiles perfectly. However, I am a bit unclear about declare_sample_delay. Assume that I have the block: pfb_decimator_ccf_0_5. To set the sample delay for this

[Discuss-gnuradio] Basic theory of IIR filters

2015-05-22 Thread marco Ribero
I've switch back with filters, and I'd like to implement a IIR filters,also because I've seen that there are different papers about IIR filters in CUDA,but I didn't see any implementation. I've see that actually gnuradio is using a direct form I implementation,which cannot be easily ported. So

Re: [Discuss-gnuradio] Buffer Overflow Debug

2015-05-22 Thread Richard Bell
Martin et. al., I implemented my own block that produces a trigger signal when a specific tag is encountered, and I feed this into the detect port of the HPD block. This is an attempt to overcome the tag trigger issues we've been having in this email chain. The trigger_tag block simply outputs

Re: [Discuss-gnuradio] OFDM Transmitter and Receiver - poor synchronization with USRP1

2015-05-22 Thread Michal Vaclík
Yes, I am using default flowgraphs (examples) just adding Multiply Const block to avoid clipping due to high PAPR and obviously UHD blocks. Using FFT of 64 and default carrier configuration, sync does get better if I stretch this to wider bandwidths by setting higher sample rates at USRP.

[Discuss-gnuradio] GNU Radio IIR Filter Taps

2015-05-22 Thread Keyur Parikh
Hello, I've been trying to move the fm De-emphasis (an IIR filter, I'm pretty sure) functionality of the WBFM_Receive block into an FPGA, and I'm a little confused as to how the taps work. I'm in fm_emph.py and can see the taps listed as btaps = [b0, b1] ataps = [1, a1] I had assumed this is a

[Discuss-gnuradio] Choose thread

2015-05-22 Thread marco Ribero
Hi, I've a question about thread management..I like the fact that scheduler can launch blocks in different threads, but I'd like to execute some blocks inside the same thread(CUDA require to perform all operations from a single thread)..for the moment I'm using GR_SCHEDULED=STS,but it blocks at