Go to the documentation of this file. 1 #ifndef __H8300_TIMER_H
2 #define __H8300_TIMER_H
7 unsigned int *
hour,
unsigned int *
min,
unsigned int *
sec);
9 #define TIMER_FREQ (CONFIG_CPU_CLOCK*10000)
11 #define calc_param(cnt, div, rate, limit) \
13 cnt = TIMER_FREQ / HZ; \
14 for (div = 0; div < ARRAY_SIZE(divide_rate); div++) { \
17 if ((cnt / rate[div]) > limit) \
20 if (div == ARRAY_SIZE(divide_rate)) \
21 panic("Timer counter overflow"); \
22 cnt /= divide_rate[div]; \