Hello TI community,
I'm working on a RC servo control code and stuck on the PPM servo signal generation.
I'm using timer1 to generating interrupts between 1000-2000us
Here is the timer initialize code:
CLKCONCMD |= 0x38; T1CTL = 0x0A; T1CCTL0 = 0x54; T1CC0L = 0xE8; T1CC0H = 0x03; T1IE = 1;
and timer set code
T1CC0L = LO_UINT16(1500]); T1CC0H = HI_UINT16(1500); T1CNTL = 0; // Reset timer to 0;
%90 of the time output is 1500us but jumping to higher values few times in a second. going to worst after BLE connection.
I read this blog posts but didnt help me.
http://e2e.ti.com/support/low_power_rf/f/538/t/197438.aspx
http://e2e.ti.com/support/low_power_rf/f/538/p/196614/701217.aspx#701217
Please help.