Only 0's on the input of the custom block

2022-08-02 Thread Bartłomiej Sójka
Hello, I'm trying to design custom block that would perform FFT on the incoming signal and do some calculations with FFT values later. The problem is that while using throttle my signal is reduced to all 0's. If it's before the block then the vector with values on the input is reduced to all 0

Re: Only 0's on the input of the custom block

2022-08-02 Thread Marcus Müller
Hi Bartłomiej, throttle literally just copies input to output, so it can't turn anything into 0s that wasn't zeros before. This much sounds like your own block has a bug, where it doesn't check whether it has enough input or output, or returns (produces) a different number of items than you've

re: [GSoC porting SIMD to gr-web] weekly update

2022-08-02 Thread 史 皓航
Hi, everyone! I am working on enabling gnuradio run faster on browser. I will post weekly update in this thread. Following is last week: Short version report: Has Done: running flow graph again success TODO: 1. Transplant volk to wasm-simd building 2. Enable edit module in flow graph on gnuradio

Question regarding multiple sources producing data at different times

2022-08-02 Thread Adrian Musceac
Hello, I'm trying to implement a multi-channel DMR transceiver, kind of similar in concept to Osmocom's osmo-trx multi-ARFCN transceiver. My flowgraph has several sources taking samples from ZeroMQ, each followed by frequency modulation, and the branches are joined with an add block. My proble

Transmitting high-speed PWM over RF

2022-08-02 Thread White, Joshua J
First, let me apologize in advance if this isn't the correct forum for this question. I have a 50 MHz PWM signal (it's actually a 50 MHz 50% DC clock with a 1PPS clock embedded with PWM) that I would like to transmit over the 2.4 GHz ISM band with as low latency as possible. My original thought

Re: Transmitting high-speed PWM over RF

2022-08-02 Thread Fabian Schwartau
Hi Joshua, the most important questions are: Can you live with less than 50 M updates/second of the PWM? How much error in the output PWM is acceptable? If you need the 50 M updates/s and you want the PWM to be high precision (like 8 bit resolution or something like that), I would say: Forget it

Re: Problem extracting individual elements from pmt list and pmt dictionary messages

2022-08-02 Thread George Edwards
Hi Jeff, Thanks again for your recent response to my posted questions, but it was not explicit enough to help me extract the values I wanted from the pmt list and dictionary. Based on the following pmt definitions for a list and dictionary. How do I extract the 1st element in the list and the valu

Re: Transmitting high-speed PWM over RF

2022-08-02 Thread WarMonkey
The first way is to parameterize the PWM signal, convert it into some kind of data stream and reproduce it on the receiver side. The second way is to use analog modulation sending the PWM signal on a RF carrier, like FSK or PSK modulation. White, Joshua J 于2022年8月3日周三 00:50写道: > First, let me ap