bastibl / gr-rds

FM RDS/TMC Transceiver
http://en.wikipedia.org/wiki/Radio_Data_System
GNU General Public License v3.0
219 stars 73 forks source link

digital_mpsk_receiver_cc is deprecated (removed in GnuRadio next) #18

Closed pinkavaj closed 7 years ago

pinkavaj commented 7 years ago

This block is now deprecated and removed from next branch of GnuRadio. Is shuld be replaced by constellation_receiver.

For BPSK this C++ code snippet (1) replaces the deprecated block, for .grc corresponding blocks exists.

(1) gr::digital::constellation_sptr p_c = gr::digital::constellation_bpsk::make()->base(); d_mpsk = gr::digital::constellation_receiver_cb::make(p_c, 1*M_PI/100.0, -0.06, 0.06);

bastibl commented 7 years ago

The next branch (which is supposed to be used with GNU Radio's next branch) should already have that updated. (Since you posted the C++ code, maybe you wanted to open the issue at GQRX?)

pinkavaj commented 7 years ago

Sorry, i hooked only the main branch. I originaly posted it to GQRX and just wanted to point out this. You can close this issue if You did not want to change it in main.