I am using the GNU radio for demodulation of signals. I faced the problem of changing the block parameters in real time. Let's say the Symbol Sync block, the Samples per Symbol parameter is not editable in runtime. I have gone through the gnu codes, it is found that some parameters are built in such a way they can't be modified during the runtime. I am using gnuradio 3.10.1.1 version and using output language as Python.
Can someone suggest how to overcome this problem.
I tried by modifying the .py file generated from .grc file.
I add the line, self.digital_sync_xx_0.set_sps(self.sps), but it is throwing error digital_sync_xx_0 has no attribute set_sps.