aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux/timer.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-3d@jannau.net>2019-03-24 10:25:56 +0100
committerKevin O'Connor <kevin@koconnor.net>2019-04-05 19:06:15 -0400
commitaab89e7f85d01fffb349b2046daebdc0deb1ce92 (patch)
treec875725a48bce1170d6039103671f7331cb1fda1 /src/linux/timer.c
parente6c3eeafd79cac08172377f447c1dd963b5cb530 (diff)
downloadkutter-aab89e7f85d01fffb349b2046daebdc0deb1ce92.tar.gz
kutter-aab89e7f85d01fffb349b2046daebdc0deb1ce92.tar.xz
kutter-aab89e7f85d01fffb349b2046daebdc0deb1ce92.zip
linux: add support for Linux hardware PWM
The replicape servo pins (P9_14/P9_16) are muxed to the SOCs hardware PWM unit driven by a 13MHz GP timer. They have to be driven by the linux host mcu. This commits adds hardware PWM support using the linux sysfs user space interface. Signed-off-by: Janne Grunau <janne-3d@jannau.net> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/linux/timer.c')
-rw-r--r--src/linux/timer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/linux/timer.c b/src/linux/timer.c
index 15e5ab76..fb8319af 100644
--- a/src/linux/timer.c
+++ b/src/linux/timer.c
@@ -21,9 +21,6 @@ static uint32_t last_read_time_counter;
static struct timespec last_read_time, next_wake_time;
static time_t start_sec;
-#define NSECS 1000000000
-#define NSECS_PER_TICK (NSECS / CONFIG_CLOCK_FREQ)
-
// Compare two 'struct timespec' times
static inline uint8_t
timespec_is_before(struct timespec ts1, struct timespec ts2)