Customized packet sink

Hey All,
Is the gr_packet_sink.cc capable of handling a customized packet
format structure or would one have to come up with a customized packet
sink
structure of ones own ignoring the complexity of access code/ sync
vector ?

Thanks,
Anay.

On Fri, Mar 30, 2012 at 10:32 PM, anay tuljapurkar
[email protected] wrote:

Hey All,
Is the gr_packet_sink.cc capable of handling a customized packet format
structure or would one have to come up with a customized packet sink
structure of ones own ignoring the complexity of access code/ sync vector ?

Thanks,
Anay.

Anay,

No, that code wasn’t really designed to be highly customizable. It
expects an sync vector and threshold, so you can play with those as
much as you want to as long as the sync word you use has 64 or fewer
bits (has to git into a long long int).

If you want something more, you’d have to create your own block.

Tom