Subversion Repositories chibiosIgnition

Rev

Rev 11 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * timer2.h
  3.  *
  4.  *  Created on: 2 Apr 2018
  5.  *      Author: Mike
  6.  */
  7.  
  8. #ifndef INC_TIMER2_H_
  9. #define INC_TIMER2_H_
  10.  
  11. extern void initTimer2(void);
  12.  
  13. extern uint16_t setRPM(uint16_t RPM);
  14.  
  15. extern uint16_t getRPM(void);
  16.  
  17. extern void setAdvance(int16_t advance);
  18.  
  19. uint16_t getNextPulse(void);
  20.  
  21.  
  22.  
  23. #endif /* INC_TIMER2_H_ */
  24.