discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] Using GMSK Mod to send digital data (e.g. an ASCII st


From: embyte
Subject: [Discuss-gnuradio] Using GMSK Mod to send digital data (e.g. an ASCII string)
Date: Sat, 20 Jul 2013 22:44:19 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130704 Icedove/17.0.7

Hello list, I would like to transmit some data using gnu-radio. My data is a binary representation of an ASCII string.

I wrote my own block that builds the frame (header, payload, CRC, trailer) as an array of 256 bytes (0s or 1s):

gr_make_io_signature(0, 0, 0)
gr_make_io_signature(1, 1, sizeof(char))

char *out = (char *) output_items[0];

[build the frame]

memcpy (out, frame, 256);
noutput_items = 256;

My question are:

1. Still I have to insert a "Packer Encoder" between my code and the GMSK mod? If yes, with which parameters? The GMSK mod is configured with Samples/Sym=50 , BT=0.4.

2. Can someone explain me how to use the bitrate parameter? I mean, should I "sync" the output of my block with the modulator? If yes, how?

I tried to redirect the transmitted signal to a file, and use a receiver (that I know working), but without success. The parameters used in the receiver's GMSK demod are the same configured in the modulator.

Thanks!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]