discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] SSB Modulator


From: Matt Ettus
Subject: Re: [Discuss-gnuradio] SSB Modulator
Date: Sat, 07 Apr 2007 18:38:09 -0700
User-agent: Thunderbird 1.5.0.10 (X11/20070302)

Eric Blossom wrote:
On Sun, Apr 08, 2007 at 09:59:21AM +0930, Berndt Josef Wulf wrote:
G'day,

I've found various implementations of SSB demodulators but no modulators? Has anyone written or seen an implementation of a SSB modulator?

cheerio Berndt

Here you go:

  real_sig = <whatever>                # at 250k samples/sec
  f2c = gr.float_to_complex()
  u = usrp.sink_c(0, interp_rate=512)
  fg.connect(real_sig, f2c, u)

Eric

Actually, that will get you a double sideband signal. You need to use a hilbert transform to create the imaginary part. Hilbert transforms are in firdes code already.

Matt




reply via email to

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