Re: Tag propagation policy in python

2020-11-17 Thread Cameron Matson
Great! thank you. Cameron On Tue, Nov 17, 2020 at 12:25 PM Jeff Long wrote: > from gnuradio import gr > print(gr.TPP_CUSTOM) > > On Tue, Nov 17, 2020 at 11:06 AM Cameron Matson > wrote: > >> Hello all, >> >> I'm trying to use an embedded python block and would like to change the >> tag propaga

Re: Tag propagation policy in python

2020-11-17 Thread Jeff Long
from gnuradio import gr print(gr.TPP_CUSTOM) On Tue, Nov 17, 2020 at 11:06 AM Cameron Matson wrote: > Hello all, > > I'm trying to use an embedded python block and would like to change the > tag propagation policy to TPP_DONT, but I can't seem to correctly qualify > that enum type. How can I re

Tag propagation policy in python

2020-11-17 Thread Cameron Matson
Hello all, I'm trying to use an embedded python block and would like to change the tag propagation policy to TPP_DONT, but I can't seem to correctly qualify that enum type. How can I refer to this value? Thanks, Cameron