RCTransmitter-USBGamepad icon indicating copy to clipboard operation
RCTransmitter-USBGamepad copied to clipboard

JR controller support

Open tinwhisker opened this issue 4 years ago • 2 comments

Just an FYI for anyone finding issues (personally a JR XP652) with connection either failing or becoming erratic and dieing:

Disable pullups as the controller already pulls the line high. Interrupt on falling edge.

pinMode(PPM_CAPTURE_PIN, INPUT); // Orig: INPUT_PULLUP

TCCR1B = (0<<ICNC1) | (0<<ICES1) | (1<<CS11); // Orig: (1<<ICES1)

Has been stable after several hours use.

tinwhisker avatar Oct 23 '20 09:10 tinwhisker

Thanks for reporting. I'm going to test it with my controller.

rootik avatar Nov 10 '20 14:11 rootik

I needed this change for my Spektrum DX6 but everything is working great now.

220111 avatar Apr 30 '22 17:04 220111