Quote Originally Posted by obaskirt
...
Turbo Coding is very computing intensive algorithm so if I can not accomplish to implement it with PIC microcontroller, which chip should I use?...
Hi obaskirt,


If you can divide this "intensive algorithm" into small pieces or sub-segments of math operations, then you can have many small PIC modules doing small math jobs and give you individual results.

You can then have a master PIC collecting these individual results and have a final calculation. The whole operation will be relatively faster.

But remember, the fastest PIC is 40Mhz I guess.
So you need to calculate precisely what speed & instruction execution time your "intensive algorithm" requires ; if you end up with a speed requirement say 4Ghz, forget PICs and use a PC instead.


---------------------------