About real-time computing

Discussions related to embedded firmware, driver, and user mode application software development
Post Reply
wer5546
Posts: 3
Joined: Tue Mar 05, 2024 11:30 pm

About real-time computing

Post by wer5546 »

I would like to ask if I want to use GnuRadio Python Block to design a real-time computing Block, how should I design it? I hope to do a 2 norm operation after collecting 32,000 ratio data.
songentle
Posts: 1
Joined: Mon Mar 11, 2024 6:43 pm

Re: About real-time computing

Post by songentle »

Designing a real-time computing block with GnuRadio Python Block for a 2 norm operation on 32,000 ratio data involves creating a custom block.tunnel rush Utilize GnuRadio's Python API for signal processing and implement the 2 norm operation on the collected data. If you need further guidance, feel free to provide more details for a more tailored response!
bubblyeducate
Posts: 1
Joined: Mon Mar 11, 2024 8:07 pm

Re: About real-time computing

Post by bubblyeducate »

songentle wrote: Mon Mar 11, 2024 6:52 pm Designing a real-time computing block with GnuRadio Python Block for a 2 norm operation on 32,000 ratio data involves creating a custom block. Utilize GnuRadio's Python API for signal processing and implement the 2 norm operation on the collected data. If you need further guidance, feel free to provide more details for a more tailored response!
Do you have any similar tools?
wer5546
Posts: 3
Joined: Tue Mar 05, 2024 11:30 pm

Re: About real-time computing

Post by wer5546 »

I finally used the FIFO method to process.
Andlonimper
Posts: 1
Joined: Thu Mar 28, 2024 2:40 am

Re: About real-time computing

Post by Andlonimper »

To design a real-time computing block in GnuRadio using the Python Block, you can utilize the Embedded Python Block feature. This allows you to create custom blocks in Python without the need for an Out of Tree (OOT)
Andlonimper
basket random
Gregg Rodriguez
Posts: 1
Joined: Tue Apr 23, 2024 8:38 am

Re: About real-time computing

Post by Gregg Rodriguez »

songentle wrote: Mon Mar 11, 2024 6:52 pm Designing a real-time computing block with GnuRadio Python Block for a 2 norm operation on 32,000 ratio data involves creating a custom block. Utilize GnuRadio's Python API for signal processing and implement the 2 norm operation on the collected data. If you need further guidance, feel free to provide more details for a more tailored response!
GNU Radio uses out-of-tree (OOT) modules to extend its functionality. You can create a new OOT module using gr_modtool.
andreen
Posts: 2
Joined: Tue Jul 23, 2024 12:38 am

Re: About real-time computing

Post by andreen »

Edit the generated Python block file slither io (likely located at my_custom_blocks/python/my_custom_blocks/norm_computation.py). Implement the logic to compute the 2-norm of 32,000 data points.
Post Reply