Re: digital communication undergraduate course

2021-01-11 Thread George Edwards
Thanks for sharing Jean-Michel. Neat stuff. George On Sat, Jan 9, 2021 at 3:50 PM jean-michel.fri...@femto-st.fr < jean-michel.fri...@femto-st.fr> wrote: > Dear GNU Radio community, > due to lockdown restricted access of students to universities, I have > recorded > videos for the undergraduate

Re: Problem with multiple input in Python OOT module

2021-01-11 Thread George Edwards
Hi Ron, Thank you very much! I will try your suggestion! Best Regards, George On Mon, Jan 11, 2021 at 6:33 PM Ron Economos wrote: > The YAML for multiple inputs is: > > inputs: > - domain: stream > dtype: complex > multiplicity: '3' > > Ron > > On 1/11/21 15:15, George Edwards wrot

Re: Problem with multiple input in Python OOT module

2021-01-11 Thread Ron Economos
The YAML for multiple inputs is: inputs: -   domain: stream     dtype: complex     multiplicity: '3' Ron On 1/11/21 15:15, George Edwards wrote: Hello, I wrote an OOT Python module with multiple inputs and when I run the QA test, it says there is an error in a swig file and throws the messa

Re: digital communication undergraduate course

2021-01-11 Thread Richard Miller
I too thought this was very generous and thank the OP.. Despite being in industry for over 25 years, I always enjoy these types of presentations, as there seems to be something new to learn. Rich Miller, AJ3G On Jan 11, 2021, at 6:40 PM, Robert McGwier wrote:  What a wonderful service for m

Re: digital communication undergraduate course

2021-01-11 Thread Robert McGwier
What a wonderful service for many. Thank you so much for sharing. Dr. Robert W McGwier, Ph.D. Adjunct Faculty, Virginia Tech ARDC Member of Board ARS: N4HY ARRL, AMSAT, AAVSO, TAPR, SkyHub On Sat, Jan 9, 2021, 3:52 PM jean-michel.fri...@femto-st.fr < jean-michel.fri...@femto-st.fr> wrote: > De

Problem with multiple input in Python OOT module

2021-01-11 Thread George Edwards
Hello, I wrote an OOT Python module with multiple inputs and when I run the QA test, it says there is an error in a swig file and throws the message below: TypeError: 'in method vector_source_c_make', argument 1 of type 'std::vector< std::complex< float >,std::allocator< std::complex< float > >

Re: trying to play two radio stations simultaneously

2021-01-11 Thread jean-michel.fri...@femto-st.fr
First of all, thank you for the feedback and letting me know that someone has watched the video :) I believe the issue with your flowgraph is that the second channel is too far from the center frequency: with 800 kHz offset with respect to the center frequency and a span of 1.536 MHz (spectrum

trying to play two radio stations simultaneously

2021-01-11 Thread Chris Gorman
Hello All, I'm trying out jean-michel.friedt's course on digital communications and have a problem with getting two radio stations to play simultaneously. I have tried to follow jean-michel's example, but am getting caught somewhere. I get one radio station and hiss on the other. I've tried a f

Re: Vector Source and QT GUI Time Sink causes performance drop

2021-01-11 Thread Mariusz Pluciński
Hi, Thanks for the hint, I didn't know about this method of profiling :). I did as you requested and it seems that it spends quite a lot of time in Qt, namely in *gray_render_line* and *gray_render_scanline* functions. If my understanding is correct, this time is spent in Qt itself, not in the und

Re: Vector Source and QT GUI Time Sink causes performance drop

2021-01-11 Thread Jeff Long
That GRC uses almost no processor on a Fedora 33, maint-3.8 installed via PyBOMBS. On Mon, Jan 11, 2021 at 6:31 AM Marcus Müller wrote: > Hi, > > I'm on the run, else I'd start a Ubuntu VM myself, but: > > sudo apt install linux-tools > sudo sysctl -w kernel.perf_event_paranoid=-1 > > perf recor

Re: Vector Source and QT GUI Time Sink causes performance drop

2021-01-11 Thread Marcus Müller
Hi, I'm on the run, else I'd start a Ubuntu VM myself, but: sudo apt install linux-tools sudo sysctl -w kernel.perf_event_paranoid=-1 perf record -ag python3 /path/to/your/flowgraph.py run for a couple of seconds, close. Afterwards, perf report will hopefully show you a percentage of "of th

Re: Vector Source and QT GUI Time Sink causes performance drop

2021-01-11 Thread Mariusz Pluciński
Hi, I tested on a different machine of mine (Fedora 32, GNU Radio 3.8.2) and the problem does not occur there. This suggests that the problem is somehow specific to this Ubuntu system, but not to a specific build of GNU Radio (nor Python, it occurs with both 3.8 and 3.9). Since this looks more lik