|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Quick Timer Question
So we set up a timer to trigger an interrupt every time it overflows. However, I could not get OpenTimer1(), ReadTimer1(), etc. to work, so we had to manually set up the timer.
My question is, how do I get the timer to overflow faster? Right now it overflows 3 or 4 times per loop. Timer setup code: T1CONbits.T1CKPS0 = 1; // 1:8 Prescale (clock=1.25MHz/each tick=800ns) T1CONbits.T1CKPS1 = 1; T1CONbits.TMR1CS = 0; // = 0 Timer uses internal clock TMR1H = 0x85; // Sets most significant byte TMR1L = 0xED; // Sets least significant byte T1CONbits.TMR1ON = 1; // Turns on Timer1 IPR1bits.TMR1IP = 0; // Sets Timer1 as low priority PIE1bits.TMR1IE = 1; // Enables Timer1 overflow interrupt INTCONbits.GIEL = 1; // Enables low priority interruptions |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Accelerometer code | ImmortalAres | Programming | 28 | 04-06-2005 01:02 |
| a quick function question | Kashi Chan | Programming | 3 | 06-03-2005 20:44 |
| Accelerometer Timer Question | psquared | Programming | 3 | 12-02-2005 01:34 |
| A quick IR sensor question | PBoss | Programming | 7 | 28-03-2004 21:02 |
| A quick question | Joelster | Technical Discussion | 6 | 10-02-2002 09:09 |