-
Notifications
You must be signed in to change notification settings - Fork 152
/
nullf.c
82 lines (69 loc) · 2.17 KB
/
nullf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* @file nullf.c
* @brief Implements a clock servo that always set the frequency offset to zero.
* @note Copyright (C) 2015 Richard Cochran <richardcochran@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdlib.h>
#include <math.h>
#include "nullf.h"
#include "print.h"
#include "servo_private.h"
struct nullf_servo {
struct servo servo;
};
static void nullf_destroy(struct servo *servo)
{
struct nullf_servo *s = container_of(servo, struct nullf_servo, servo);
free(s);
}
static double nullf_sample(struct servo *servo, int64_t offset,
uint64_t local_ts, double weight,
enum servo_state *state)
{
long long int abs_offset = llabs(offset);
if ((servo->offset_threshold && abs_offset < servo->offset_threshold) ||
(servo->step_threshold && servo->step_threshold >= abs_offset)) {
*state = SERVO_LOCKED;
return 0.0;
}
if ((servo->first_update && servo->first_step_threshold &&
servo->first_step_threshold < abs_offset) ||
(servo->step_threshold && servo->step_threshold < abs_offset)) {
*state = SERVO_JUMP;
} else {
*state = SERVO_UNLOCKED;
}
return 0.0;
}
static void nullf_sync_interval(struct servo *servo, double interval)
{
}
static void nullf_reset(struct servo *servo)
{
}
struct servo *nullf_servo_create(void)
{
struct nullf_servo *s;
s = calloc(1, sizeof(*s));
if (!s)
return NULL;
s->servo.destroy = nullf_destroy;
s->servo.sample = nullf_sample;
s->servo.sync_interval = nullf_sync_interval;
s->servo.reset = nullf_reset;
return &s->servo;
}