Re: [Discuss-gnuradio] Symbol to chip Mapping

2019-03-12 Thread Achilleas Anastasopoulos
Not quite: You set the "dimension" of the c2s block to 32. No need to set any variable to 16... Then you have to input to the c2s block an array of size 16 by 32 (or simply 16x32=512). Take a look at some examples of how c2s block is used in gr-trellis. Achilleas On Mon, Mar 11, 2019 at

Re: [Discuss-gnuradio] Symbol to chip Mapping

2019-03-11 Thread Tellrell White
Okay. Let me make sure i’m clear on this. My flow graph looks like the following : Random source -> packed to unpacked -> chunks to symbols The source and packed to unpacked are set to byte and the packed to unpacked is outputting 4 bits per chunks so am I setting the dimension of the

[Discuss-gnuradio] Symbol to chip Mapping

2019-03-11 Thread Achilleas Anastasopoulos
Yes this can be done with chunks-to-symbols. This is essentially a 16 x 32 lookup table: turn your 4 bits into a byte which indices a lookup table with 32 dimensions (set the "dimension" variable to 32 in chunks-to-symbols). Achilleas ___

[Discuss-gnuradio] Symbol to chip Mapping

2019-03-05 Thread Tellrell White
Hello All I have a flow graph in which I'm trying to map 4 bit symbols to 32 bit chip sequences similar to what was done in GR- IEEE 802.15.4. However, I'm unsure as to how do this. Is there a way this can be done using an existing block such as the chunks to symbols block for instance? Attached