summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/calypso/timer.h
blob: 96587d5a93b656960a66729c32089b2f6159f76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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);

/* power up the timers */
void hwtimer_init(void);

#endif /* _CAL_TIMER_H */