0

I need to pull out mpsk_receiver_cc.cc (or mpsk_receiver_cc.h) for the implementation of a member function mpsk_receiver_cc(...). I know it is in gnuradio/digital/ folder. How could I find the path for this folder in order to pull out the script for mpsk_receiver_cc.cc (or mpsk_receiver_cc.h)?

My gnuradio workspace is installed via source. Therefore, all the codes should be in my machine.

I know this should be a linux command, but I couldn't succeed after several tries.

Ling
  • 117
  • 4
  • 1
    Does this answer your question? [How can I recursively find all files in current and subfolders based on wildcard matching?](https://stackoverflow.com/questions/5905054/how-can-i-recursively-find-all-files-in-current-and-subfolders-based-on-wildcard) – mkrieger1 Jan 03 '21 at 00:39
  • still no .cc file – Ling Jan 03 '21 at 01:01
  • Then apparently your assumption "I know it is in gnuradio/digital/ folder" is wrong. – mkrieger1 Jan 03 '21 at 01:01

1 Answers1

1

Make sure you are using the right repository:

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • My question is closely related to the gnuradio file structure. I myself has gone back to everything in this area, and figured out what I need is actually in mpsk_receiver_cc_impl.cc. Thank you – Ling Jan 03 '21 at 20:35