Re: [Discuss-gnuradio] Problem trying to implement Reed Solomon encoder

2008-11-24 Thread Alvaro Palomo
Hi Stevie, thank you very much for the advice. I have tried to compile it removing the extern C wrap but it is not working, it keep on displaying the same error message. Maybe I'm wrong, but since all the files in the directory lib/reed-solomon are written in C instead of C++, isn't the wrap

Re: [Discuss-gnuradio] Problem trying to implement Reed Solomon encoder

2008-11-21 Thread stevie.glass
Hi, Your problem is because you are not *linking* with the Reed/Solomon library. The problem is that you've wrapped the '#include ' inside an 'extern "C"' block. If you remove it then you'll be one step closer to getting it working. Is mise, Stevie __

[Discuss-gnuradio] Problem trying to implement Reed Solomon encoder

2008-11-21 Thread Alvaro Palomo
Hello, I'm trying to create a GNU Radio block that carries out a Reed Solomon coding based on the functions provided into the directory /gnuradio-core/src/lib/reed-solomon. As an example I have taken the block gr_encode_ccsds_27 that can be found in the directory /gnuradio-core/src/lib/general si