summaryrefslogtreecommitdiff
path: root/openpcd/firmware/src/os/tc_cdiv.h
diff options
context:
space:
mode:
Diffstat (limited to 'openpcd/firmware/src/os/tc_cdiv.h')
-rw-r--r--openpcd/firmware/src/os/tc_cdiv.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/openpcd/firmware/src/os/tc_cdiv.h b/openpcd/firmware/src/os/tc_cdiv.h
deleted file mode 100644
index 4f2bc02..0000000
--- a/openpcd/firmware/src/os/tc_cdiv.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _TC_CDIV_H
-#define _TC_CDIV_H
-
-#include <sys/types.h>
-#include <lib_AT91SAM7.h>
-
-static AT91PS_TCB tcb;
-
-extern void tc_cdiv_phase_add(int16_t inc);
-extern void tc_cdiv_set_divider(u_int16_t div);
-
-static inline void tc_cdiv_phase_inc(void)
-{
- tc_cdiv_phase_add(1);
-}
-
-static inline void tc_cdiv_phase_dec(void)
-{
- tc_cdiv_phase_add(-1);
-}
-
-extern void tc_cdiv_print(void);
-extern void tc_cdiv_init(void);
-extern void tc_cdiv_fini(void);
-
-#endif
personal git repositories of Harald Welte. Your mileage may vary