Input Capture

Setup Input Capture //—– SETUP TIMER 3 —– //Used for: Input capture OpenTimer3((T3_ON | T3_IDLE_CON | T3_GATE_OFF | T3_PS_1_1 | T3_SOURCE_INT), 0xffff); //——————————- //—– SETUP INPUT CAPTURE —– //——————————- //Parameter 1: //IC_EVERY_FALL_EDGE Capture timer value on every falling edge of input applied at the ICx pin //IC_EVERY_RISE_EDGE  Capture timer value on every rising edge of […]

Read More