Hi,
triple vote method means that you perform three consecutive reads and then evaluate the result. If there's uneven value, discard it.
The reads should be done as fast as possible. If it is done by CPU, use critical section, so no interrupt is triggered. Another option is to use DMA.
I got information that the possibility to read wrong value is higher if ratio between peripheral clock and bus clock is lower. If the ratio is 1/24, at least, it can still occur but probability is smaller and triple vote will eliminate the problem. Or, as already mentioned, use the same clock source (but triple vote is also needed).
Regards,
Lukas