From ece26cfb702b6cda4ade70cbf6119cf04f2c5aa8 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 2 Nov 2016 11:22:35 +1000 Subject: [PATCH] tools: up the maximum velocity so the output graph shows the leveling off Signed-off-by: Peter Hutterer --- tools/ptraccel-debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ptraccel-debug.c b/tools/ptraccel-debug.c index 53d34fff..c0bdef00 100644 --- a/tools/ptraccel-debug.c +++ b/tools/ptraccel-debug.c @@ -148,7 +148,7 @@ print_accel_func(struct motion_filter *filter, accel_profile_func_t profile) printf("# set ylabel \"raw accel factor\"\n"); printf("# set style data lines\n"); printf("# plot \"gnuplot.data\" using 1:2\n"); - for (vel = 0.0; vel < 0.003; vel += 0.0000001) { + for (vel = 0.0; vel < 0.004; vel += 0.0000001) { double result = profile(filter, NULL, vel, 0 /* time */); printf("%.8f\t%.4f\n", vel, result); }