Initial commit
[kk_librfid.git] / firmware / src / os / .svn / text-base / tc_cdiv.h.svn-base
blob4f2bc023499fcbdc36c769e004a4bf844c3ebc23
1 #ifndef _TC_CDIV_H
2 #define _TC_CDIV_H
4 #include <sys/types.h>
5 #include <lib_AT91SAM7.h>
7 static AT91PS_TCB tcb;
9 extern void tc_cdiv_phase_add(int16_t inc);
10 extern void tc_cdiv_set_divider(u_int16_t div);
12 static inline void tc_cdiv_phase_inc(void)
14        tc_cdiv_phase_add(1);
17 static inline void tc_cdiv_phase_dec(void)
19        tc_cdiv_phase_add(-1);
22 extern void tc_cdiv_print(void);
23 extern void tc_cdiv_init(void);
24 extern void tc_cdiv_fini(void);
26 #endif