timers.h 331 B

12345678910111213141516171819
  1. #ifndef INCLUDE_TIMERS_H
  2. #define INCLUDE_TIMERS_H
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. void timer_init(unsigned timer);
  8. void timer_restore(unsigned timer);
  9. void timer_mode(unsigned timer, unsigned mode);
  10. void timer_load(unsigned timer, unsigned value);
  11. unsigned timer_read(unsigned timer);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif