Unable to run v3.10.9.2 after following the instruction to build from source

2024-09-13 Thread Michelle
Hello, After following all the instructions in the wiki : https://wiki.gnuradio.org/index.php/LinuxInstall I cannot run v3.10.9.2. I followed all the step dependencies, UHD, volk, gnuradio and it's not working. please can i have some assistance with this issue? thank you!

Combining Packet Header and Vector Source for BPSK tx

2023-05-08 Thread Michelle Salehi
ons> and the example file "Pkt_xmt_gr38.grc" I guess I'm not understanding how I would add the vector source data to the embedded python block "Packet Format GR38"? If you have any suggestions on where I can start to understand this that would be appreciated. Thanks for your help! Michelle

Re: Promblems with gr-air-modes in gnuradio 3.10

2022-10-04 Thread Michelle
d, or tested by me. Needs the usual rebuild-from-gr-modtool, and I haven't gotten around to it. Nick On Mon, Oct 3, 2022 at 11:52 AM Philip Balister wrote: On 10/3/22 09:34, Michelle wrote: > Hi Cinaed, > > thank you for your answer, It seems like modes_rx (gr3.

Re: Promblems with gr-air-modes in gnuradio 3.10

2022-10-03 Thread Michelle
Hi Cinaed, thank you for your answer, It seems like modes_rx (gr3.9 branch) under GNU Radio 3.10 hangs somewhere on startup. @willcode4  will try to debug it. have a good day. On 2022-10-02 19:52, Cinaed Simson wrote: Hi Michelle - the  source code version of gr-air-modes from github

Promblems with gr-air-modes in gnuradio 3.10

2022-10-01 Thread Michelle
Hello, I have gnuradio 3.10 and I wanted to install gr-air-modes. In the chat one of the moderators told me the version of gr-air-modes that is compatible with gr3.9 would work with gr3.10. So I installed this version in my computer, the installation was successfull however when I execute rx_m

Video about how useful GNU Radio is with using Ayecka SR-1 Pro in the Remote Labs at ORI

2022-04-22 Thread Michelle Thompson
https://youtu.be/pWAz7GnuXJ8 GNU Radio helps the Open Research Institute accomplish R&D goals for the community. -Michelle Thompson

Re: Problems with the Frequency Xlating FIR Filter

2022-01-26 Thread Michelle
Good morning Martin, please can you explain to me what you mean by REPL? Thank you have a good day On 2022-01-25 05:04, Martin Braun wrote: Can you try running this in a REPL to see what the return value of firdes.lowpass(...) is? --M On Tue, Jan 25, 2022 at 2:03 AM Michelle wrote

Problems with the Frequency Xlating FIR Filter

2022-01-24 Thread Michelle
hello, I'm using a FIR filter and I have the error : "Param - Taps(taps): Expression None is invalid for type'complex_vector'." my taps is : firdes.low_pass ( 1, samp_rate, frec_carrier, 25000,firdes.WIN_HAMMING ) samp_rate and  frec_carrier are both variables in my graph. I don't understa

Re: Error No module named 'TheNameOfMyModule' in GRC

2022-01-19 Thread Michelle
ction. On 2022-01-19 5:01 a.m., Ivan Iudice wrote: This is not a final solution… You need to add your library path in /etc/ld.so.conf.d/ in order to see your library everywhere. Have a nice day. Ivan Il giorno 19 gen 2022, alle ore 10:52, Michelle ha scritto: Good morning Vasil, I fol

Re: Error No module named 'TheNameOfMyModule' in GRC

2022-01-19 Thread Michelle
Good morning Vasil, I followed your indications and it works. Thank you :) On 2022-01-18 9:18 a.m., Vasil Velichkov wrote: Hi Michelle, On 18/01/2022 14.01, Michelle wrote: hello, I created an OOT module, added a block and made the block available in GRC. Then I installed the module and

Re: Error No module named 'TheNameOfMyModule' in GRC

2022-01-18 Thread Michelle
Hi Ivan, thank you for your answer, I had already done it but the error still appears. On 2022-01-18 7:22 a.m., Ivan Iudice wrote: Try to run ldconfig after male install your OOT module. Ivan Il giorno 18 gen 2022, alle ore 13:16, Michelle ha scritto:  hello, I created an OOT module

Error No module named 'TheNameOfMyModule' in GRC

2022-01-18 Thread Michelle
hello, I created an OOT module, added a block and made the block available in GRC. Then I installed the module and called ldconfig (as I'm in ubuntu). My block appears in GRC but when I insert the block in a graph and execute that graph I get an error *No module named 'TheNameOfMyModule'. * P

Re: module SWIG disabled when running cmake

2022-01-13 Thread Michelle
Hello Marcus, No I didn't. Thank you very much, the test passed :) On 2022-01-13 1:45 p.m., Marcus Müller wrote: Hi Michelle! looking at this: have you re-run cmake, and make, before doing ctest? Best regards, Marcus On 13.01.22 19:33, Michelle wrote: Hi Marcus :) I installed swig (

Re: module SWIG disabled when running cmake

2022-01-13 Thread Michelle
Hi Marcus :) I installed swig ( SWIG Version 4.0.1) but when I make the test I still have the same issue: $ ctest -V -R sig_source UpdateCTestConfiguration  from :/home/michelle/gr-signalSource/build/DartConfiguration.tcl UpdateCTestConfiguration  from :/home/michelle/gr-signalSource/build

module SWIG disabled when running cmake

2022-01-13 Thread Michelle
Hello, I am writing my own block and when I executed /cmake ..// I get the warning "/Disabling SWIG because version check failed/". then when I did the qa test I get the error "/ModuleNotFoundError: No module named 'signalSource_swig'/ " (signalSource is the name of my module). Do I have to inst

Re: Problems when passing messages to a source block

2021-12-09 Thread Michelle
finished==False): for i in data:   self.message_port_pub(pmt.intern('out_port'), i)   time.sleep (1)     return len(data) On 2021-12-06 7:07 p.m., Jeff Long wrote: Is "data" a double? Thread() passes "args" to self.run() ... On Mon, D

Re: Problems when passing messages to a source block

2021-12-06 Thread Michelle
21-12-06 5:14 p.m., Jeff Long wrote: It is message_port_pub, not msg_port_pub, if that helps. On Mon, Dec 6, 2021 at 4:48 PM Michelle <mailto:mkprojects...@gmail.com>> wrote: Good evening, I wonder where the function *msg_port_pub* is defined, I do not find it anywhere. I

Re: Problems when passing messages to a source block

2021-12-06 Thread Michelle
t calls the function but it doesn't fix the issue. So I would like to try 2 things: 1) define the original function in my embedded python block and invoke it. And if it doesn't work, 2) invoke the original C++ function with pybinds. Thanks you and have a nice evening. On 2021-12-

Re: Problems when passing messages to a source block

2021-12-01 Thread Michelle
ing) GR and python threading at the same time. Good luck - let us know how it goes. Also, please respond to the mailing list so everyone can benefit from the conversation. On Mon, Nov 29, 2021 at 5:11 PM Michelle mailto:mkprojects...@gmail.com>> wrote:

Problems when passing messages to a source block

2021-11-29 Thread Michelle
Good morning, I want to generate a source controlled by voltage. Basically, I send messages to a source in order to change its amplitude. I have built a block to generate messages and pass them to the source. To do so, I created an "embedded python block " that generates and transmits a messa

Re: RF signals are pure noise in Python implementation

2021-11-25 Thread Michelle Thompson
I'm doing a similar thing for something that works like zigbee. Do you have a link to your code? I think it should be working better than what you're seeing. -Michelle W5NYV On Thu, Nov 25, 2021 at 5:59 AM Verónica Toro Betancur wrote: > Hi, > > I am trying to detect

Re: Call for Submissions: GNU Radio "Block Party" Articles for ARRL QEX Magazine

2021-07-11 Thread Michelle Thompson
Greetings all! Special thanks to Jean-Michel Friedt for submitting the first Block Party article for QEX Magazine. If you are thinking about submitting an article for this series, then please get in touch and I will do all I can to make the job easier. -Michelle W5NYV On Wed, Jun 30, 2021

Call for Submissions: GNU Radio "Block Party" Articles for ARRL QEX Magazine

2021-06-30 Thread Michelle Thompson
e any notable or unusual programming or mathmatic techniques? D. Questions? Comments? Critique? Please let me know at: w5...@arrl.net -Michelle W5NYV

Re: Survey regarding GNU radio usage in amateur radio

2020-11-14 Thread Michelle Thompson
forward to the published results and will help spread the word about the survey. -Michelle W5NYV On Sat, Nov 14, 2020 at 00:12 Adrian Musceac wrote: > Hello, > > > > I am doing a survey regarding the topic of GNU radio usage in amateur > radio > > activities. > > Thi

Re: CTF

2020-10-14 Thread Michelle Thompson
You're very welcome! Best of luck and I hope to be able to participate. -Michelle W5NYV On Wed, Oct 14, 2020 at 2:35 PM Federico 'Larroca' La Rocca < flarr...@gmail.com> wrote: > Hi everyone, > > I wanted to let you all know about the upcoming (virtual) captur

Re: Thoughts on forming a GNU Radio Amateur Radio monthly meeting group

2020-09-22 Thread Michelle Thompson
I can present about the Final Determination letter recently received from the US State Department concerning the amateur radio satellite service. Open Source satellite work has been determined to be free of ITAR. -Michelle W5NYV On Tue, Sep 22, 2020 at 5:33 AM Barry Duggan wrote: > Th

Virtual GNU Radio Conference 2020 - Call for Participation

2020-04-30 Thread Michelle Thompson
ts? Want to volunteer? We need reviewers and people interested in gaining experience with running an online conference event. Write gr...@gnuradio.org or me directly. Know someone that needs to know about GRCon20? Pass along the attached pdf. -Michelle Thompson W5NYV w5...@arrl.net C4A_GRCon20_Virtual.pdf Description: Adobe PDF document

Re: Lunar Orbiting Platform Gateway

2019-12-03 Thread Michelle Thompson
Thank you to Frank Bauer for providing all of this content. What can we do to support, extend, and enhance the effort to get open source DSP framework content better represented in space through the Gateway project? -Michelle W5NYV On Wed, Oct 30, 2019 at 11:57 AM John Malsbury wrote: >

Re: Lunar Orbiting Platform Gateway

2019-11-01 Thread Michelle Thompson
whatever I can get as soon as I can. -Michelle W5NYV On Fri, Nov 1, 2019 at 4:23 AM Kevin K Gifford wrote: > Hi Space-RF-SDR enthusiasts - > > Please see below link for the recent (9/25/2019) space agencies lunar > communications architecture final report that has detailed i

Re: Lunar Orbiting Platform Gateway

2019-10-31 Thread Michelle Thompson
Yes - I'm attempting to get a copy of the slides from recent ARISS presentations. There was a diagram with planned frequencies. Plenty to work with. -Michelle W5NYV On Wed, Oct 30, 2019 at 11:57 AM John Malsbury wrote: > And you mentioned something about amateur radio portions,

Re: Lunar Orbiting Platform Gateway

2019-10-30 Thread Michelle Thompson
radio portions that might be included. There's a lot of overlap between what I do and the type of communications proposed. Comment and critique would be very appreciated here. -Michelle W5NYV On Wed, Oct 30, 2019 at 7:14 AM Müller, Marcus (CEL) wrote: > Hey John, > > > >

Lunar Orbiting Platform Gateway

2019-10-29 Thread Michelle Thompson
Anyone working on blocks specifically for Lunar Orbiting Platform Gateway? Or interested in doing so? -Michelle W5NYV -- -Michelle W5NYV "Potestatem obscuri lateris nescis."

[Discuss-gnuradio] Fwd: [hamsci-swstation] A Little Fun with Digital RF

2018-12-03 Thread Michelle Thompson
I enjoyed reading this writeup from a GNU Radio user, and wanted to share it. -Michelle W5NYV -- Forwarded message - From: Greg KF5N Date: Sun, Dec 2, 2018 at 5:01 PM Subject: [hamsci-swstation] A Little Fun with Digital RF To: hamsci-swstation I had a great time at the

Re: [Discuss-gnuradio] DVB-S2/X Block Party at GNU Radio Conference 2018

2018-06-21 Thread Michelle Thompson
etc). We have plenty of Plutos and some LimeSDRs. -Michelle W5NYV On Wed, Jun 20, 2018 at 3:42 PM, Dan CaJacob wrote: > I'd suggest incorporating RFNOC at least as an option. I suspect actual > use of DVBS2X might be rather boring if you're stuck on a processor. > > On

[Discuss-gnuradio] DVB-S2/X Block Party at GNU Radio Conference 2018

2018-06-20 Thread Michelle Thompson
space use. We are part of Open Research Institute. Learn more about this non-profit here: https://openresearch.institute/ -Michelle W5NYV ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] RTP block / Opus vocoder

2018-05-10 Thread Michelle Thompson
GSE work that can be found in Wireshark and in GNU Radio, so working with GSE streams can be easier. -Michelle W5NYV "Potestatem obscuri lateris nescis." On Wed, May 9, 2018 at 9:54 AM, Albin Stigö wrote: > I'm looking specifically to improve the audio streaming of the GQRX