Re: Python Bindings Out of Sync: Which files are out of sync?

2024-01-05 Thread Glen Langston
Dear Josh and all Gnuradio-ers, Thanks your hint helped me fix the problem. The previous code was written using swig, so I’d not run the gr_modtool bind program like that before. All is OK and I have two, very simple, new modules for my purposes. One (vselect) just selects a sub-channel ra

Suitable hardware to use gr-atsc3

2024-01-05 Thread Deron
As a software developer who works in the broadcast industry, I am greatly interested in the GNU Radio implementation of an ATSC 3.0 transmitter at https://github.com/drmpeg/gr-atsc3. My interest lies in hands on learning of what can be done with ATSC3. That said, I've been tempted to jump into

Passing a list via message

2024-01-05 Thread vitt...@pm.me
Hello everybody and HNY ! I have almost finished writing (Gnuradio 3.10.1.1) an OOT block, at the moment an Embeeded block, that is able to produce the data needed for satellite tracking (azimuth / elevation / doppler / etc) without having to have an external application, in my case Gpredict. Th

Re: 2 SDRs – Parallel Programming

2024-01-05 Thread Marcus D. Leech
On 05/01/2024 10:33, Jim Melton wrote: This has less to do with GNU Radio and more to do with real-time programming . A system is said to be real-time if the total correctness of an operation depends not only upon its logical correctness, bu

RE: 2 SDRs – Parallel Programming

2024-01-05 Thread Jim Melton
This has less to do with GNU Radio and more to do with real-time programming. A system is said to be real-time if the total correctness of an operation depends not only upon its logical correctness, but also upon the time in which it is perfor

Re: Python Bindings Out of Sync: Which files are out of sync?

2024-01-05 Thread Josh Morman
When cmake is run, it does an md5 hash on the public header files and makes sure the value matches what is written in *_python.cc Even a single character change in the .h file will disturb the hash and require a rebinding. If you are sure that you don't want to rebind, then you can call: gr_modtoo

Re: Python Bindings Out of Sync: Which files are out of sync?

2024-01-05 Thread Glen Langston
Thanks Josh for your quick response. I’ve written c++ code for gnuradio successfully before. I’m not sure what is different about this, very simple, code. What does “out of sync” mean specifically? I’ve got the same calling arguments in both files, modulo the different programming styles for

Re: 2 SDRs – Parallel Programming

2024-01-05 Thread Oğuzhan Gedikli
Hello Marcus, The boards I have are b200 and b210. I want to change the frequency of 2 SDRs at the same time. Even if I write the codes in parallel, the frequency of one of the SDRs changes first, and then the frequency of the other one changes. I want 2 of them to run in parallel. I looked a