I am making a BLE device that uses 7 ADC inputs. Most of the inputs need to read at 1hz or so. Two of these inputs are of interest
- The first is a heart-rate signal that needs to read at 100+hz. I need to have an idea of the time/frequency when it samples so I can compute BPM.
- The second input needs to read 5-20us after a pin that pulses at 1-255hz (the frequency is chosen via a Bluetooth characteristic). I used this example to get the pwm/saadc working.
I have solved each of these independently of each other, the issue is getting both to work together.
From what I can tell, there can only be one saadc task. This throws a wrench in my plans, I am unsure of how to approach this issue, any ideas?