Part Number: MSP430G2553
Other Parts Discussed in Thread: MSP430G2553
Tool/software: Code Composer Studio
Greetings
I am currently trying to figure out all the possibilities of the timer module of msp430g2553. I would like to start the timer directly from an input pin. At the moment I am using an interrupt to start the timer with TACTL. I was wondering if starting the timer could be possible without any code, directly from a pin.
Code at the moment:
#pragma vector=PORT1_VECTOR
__interrupt void Port_1(void)
{
TACTL |= MC_1;
}