Hello!
I'm currently working on an autonomous robot's collision detection feature, and I would like to use feedback from 5 ultrasonic sensors to do it.
The sensors work by sending a pulse of decreasing width as objects get closer to the sensor, so I've been able to use the eCap feature to measure the pulse and act based on its duration.
My problem comes from the fact that the launchpad only has eCap1, eCap2, and eCap3. I understand that I could have the rising and falling edge of two pulses go to a single eCap as 4 events, but if I overlap the signals I receive from the sensors, it gets too noisy to use. If I use multiple eCap1 pins the signals will still overlap so that the rising edge of the second signal happens before the falling edge of the first. Is there any way I can send multiple signals to the same eCap so that I can monitor 5 sensors with the 3 available eCaps?