ppm (sum) in to servo output, possible timer issue

Hi,

change this in the cpp file

void CRCArduinoPPMChannels::begin()
{
 m_sOutOfSynchErrorCounter = 0;
 attachInterrupt(0,CRCArduinoPPMChannels::INT0ISR,RISING);
}

to this

void CRCArduinoPPMChannels::begin()
{
 m_sOutOfSynchErrorCounter = 0;
 /* We dont need this if using the sample sketch
 attachInterrupt(0,CRCArduinoPPMChannels::INT0ISR,RISING);
 */
}

That should do it.

I will dig out the PPM Output for you as well, probably tomorrow, remind me if I don't

Duane B