You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
584 B
25 lines
584 B
#ifndef _CAL_TIMER_H |
|
#define _CAL_TIMER_H |
|
|
|
/* Enable or Disable a timer */ |
|
void hwtimer_enable(int num, int on); |
|
|
|
/* Configure pre-scaler and if timer is auto-reload */ |
|
void hwtimer_config(int num, uint8_t pre_scale, int auto_reload); |
|
|
|
/* Load a timer with the given value */ |
|
void hwtimer_load(int num, uint16_t val); |
|
|
|
/* Read the current timer value */ |
|
uint16_t hwtimer_read(int num); |
|
|
|
/* Enable or disable the watchdog */ |
|
void wdog_enable(int on); |
|
|
|
/* Reset cpu using watchdog */ |
|
void wdog_reset(void); |
|
|
|
/* power up the timers */ |
|
void hwtimer_init(void); |
|
|
|
#endif /* _CAL_TIMER_H */
|
|
|