static void poll_input_capture(void)
{
uint16_t icp, diff;
- uint8_t rising;
/* no new sample, return */
if ((TIFR1 & _BV(ICF1)) == 0)
icp = ICR1;
sei();
- rising = !!(TCCR1B & _BV(ICES1));
-
- /* change the edge type */
- TCCR1B ^= _BV(ICES1);
-
/* clear the flag by writing a one */
TIFR1 = TIFR1 | _BV(ICF1);
/* a rising edge with at least 2ms of state 0 means that we
* get the first servo */
- if (rising == 1 && diff > 2000) {
+ if (diff > 3000) {
icp_idx = 0;
return;
}
/* get the value for the servo */
- if (rising == 0 && icp_idx < NB_SERVO) {
+ if (icp_idx < NB_SERVO) {
if (diff < 1000)
icp_servos[icp_idx] = 0;
+ else if (diff > 2023)
+ icp_servos[icp_idx] = 1023;
else
icp_servos[icp_idx] = diff - 1000;
icp_idx++;