Set up ADC using synergy configurator for continuous scan
At start of my thread called the open function, the scan config function, and then the start scan function.
Now scanning continuously.
In my timer IRQ I read the adc data directly using a register read (note: must use 16 bit read to prevent possible corruption as the adc continuously updates register as conversion finishes!)
My solution is fast and causes no problems. I record the adc data and after my fast process control is finished I analize the data in another thread. I set a semaphore in the timer routine to indicated that the process is finished and the analysis thread is waiting on this semaphore so it performs the anaysis and goes back to wait for semaphore.
My system is complete and working now.
Thanks for help.
Steve D