LPC11C24 external clock counter mode

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LPC11C24 external clock counter mode

705 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by lerlacher on Sat May 24 10:30:20 MST 2014
Hello,

I'm trying to capture an encoder signal (a light barrier) using the timer module in counting mode with external clock on the capture pin.

Here is my code (formatted version: http://pastie.org/private/kdic1jfdhge0pnwfv6ola):
<code>
void eli_light_init() {

//configure capture input
LPC_IOCON->R_PIO1_0 &= ~0x1F;
LPC_IOCON->R_PIO1_0 |= (0x2 << 3) | 0x3;

//enable clock
LPC_SYSCON->SYSAHBCLKCTRL |= (0x1 << 10);

//configure timer block
LPC_TMR32B1->PR = 0x0;  // disable Prescaler
LPC_TMR32B1->MCR&= ~(0xFFF);// disable matching
LPC_TMR32B1->EMR&= ~(0xFFF);// disable match outputs
LPC_TMR32B1->CCR&= ~(0x3);// disable capture copy
LPC_TMR32B1->CTCR&= ~(0xF);// clear count control
LPC_TMR32B1->CTCR|=  (0x1);// set count control to capture rising edge

//reset value of counter
LPC_TMR32B1->TC = 0;

//reset and enable timer
LPC_TMR32B1->TCR |= 0x3;
LPC_TMR32B1->TCR &= ~(0x2);
}

uint32_t eli_light_read(uint8_t reset) {
uint32_t value = LPC_TMR32B1->TC;

// reset
if (reset) {
LPC_TMR32B1->TC = 0;
}

return value;
}
</code>

I am testing this by just poking the PIO1_0 pin with a multimeter tip that is connected to VDD and a breakpoint with the condition "value > 0" in the read function. I have verified that the init function is called and that the read function is regularly called as well. The breakpoint never fires.

Am I setting up the control registers correctly? Is it kosher to enable the pulldown (is the pulldown even connected when the capture function is configured?) on the capture pin? Anything else?

Any help is muchly appreciated.
Labels (1)
0 Kudos
1 Reply

576 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by lerlacher on Sat May 24 12:03:38 MST 2014
Of course right after posting I found the problem, my code enables the pullup resistor and not the pulldown. It has to be like this:

<code>
LPC_IOCON->R_PIO1_0 &= ~0x1F;
LPC_IOCON->R_PIO1_0 |= (0x1 << 3) | 0x3;
</code>
0 Kudos