Im currently using ez430-rf2500T. Let's say i have an electrical signal to be converted by ADC. But after which, i want to apply 2 median filters to it before sending the signal back to pc. And the 2 filters must be able to store 101 elements and 307 elements respectively. As the median filter is continuous filter, creating a temp 307 elements for temporary use of sorting to determine the median filter.
The question is, is this a very good method to begin with? As in, applying 2 median filters with such huge array elements and having to sort the values before returning a median value. Will it cause high workload to MSP430 and as well as processing time > converting time?