Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2 | Rev 3 | ||
|---|---|---|---|
| Line 3... | Line 3... | ||
| 3 | 3 | ||
| 4 | extern void initTimer(void); |
4 | extern void initTimer(void); |
| 5 | 5 | ||
| 6 | extern void startTimer(void); |
6 | extern void startTimer(void); |
| 7 | extern void stopTimer(void); |
7 | extern void stopTimer(void); |
| - | 8 | ||
| - | 9 | #define timerSampleSize 16 |
|
| - | 10 | extern uint16_t timerSamples[timerSampleSize]; |
|
| - | 11 | ||
| - | 12 | extern uint8_t timerInIndex; |
|
| - | 13 | extern uint8_t timerOutIndex; |
|
| - | 14 | ||