You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
Need some way to have setters and getters for block parameters that allow element access.
Example:
say, it is a uhd_block, but I want to have a parameter that represents gain. This could be a vector of gains where each element sets a particular channel. But then when I do set_gain(x), the current mechanism expects x to be a vector and set all the gains in one shot.
Instead I should be able to do set_gain(0,x) where x is a float
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Need some way to have setters and getters for block parameters that allow element access.
Example:
say, it is a uhd_block, but I want to have a parameter that represents gain. This could be a vector of gains where each element sets a particular channel. But then when I do
set_gain(x)
, the current mechanism expectsx
to be a vector and set all the gains in one shot.Instead I should be able to do
set_gain(0,x)
where x is a floatThe text was updated successfully, but these errors were encountered: