a752c7ab
elopes
add first test an...
|
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/*
* Copyright (C) 2014 Freie Universität Berlin
* Copyright (C) 2015 Eistec AB
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License v2.1. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @ingroup drivers_servo
* @{
*
* @file
* @brief Servo motor driver implementation
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
*
* @}
*/
#include "servo.h"
#include "periph/pwm.h"
#include "timex.h" /* for US_PER_SEC */
#define ENABLE_DEBUG (0)
#include "debug.h"
#ifndef SERVO_FREQUENCY
#define SERVO_FREQUENCY (100U)
#endif
#ifndef SERVO_RESOLUTION
#define SERVO_RESOLUTION (US_PER_SEC / SERVO_FREQUENCY)
#endif
int servo_init(servo_t *dev, pwm_t pwm, int pwm_channel, unsigned int min, unsigned int max)
{
int actual_frequency;
actual_frequency = pwm_init(pwm, PWM_LEFT, SERVO_FREQUENCY, SERVO_RESOLUTION);
DEBUG("servo: requested %d hz, got %d hz\n", SERVO_FREQUENCY, actual_frequency);
if (actual_frequency < 0) {
/* PWM error */
return -1;
}
dev->device = pwm;
dev->channel = pwm_channel;
dev->min = min;
dev->max = max;
/* Compute scaling fractional */
/*
* The PWM pulse width can be written as:
*
* t = k / (f * r)
*
* where t is the pulse high time, k is the value set in the PWM peripheral,
* f is the frequency, and r is the resolution of the PWM module.
*
* define t0 as the desired pulse width:
*
* t0 = k0 / (f0 * r)
*
* where f0 is the requested frequency, k0 is the requested number of ticks.
* Introducing f1 as the closest achievable frequency and k1 as the set tick
* value yields:
*
* t1 = k1 / (f1 * r)
*
* setting t1 = t0 and substituting k1 = k0 * s yields:
*
* k0 / (f0 * r) = k0 * s / (f1 * r)
*
* solve for s:
*
* s = f1 / f0
*
* where s is the optimal scale factor to translate from requested position
* to actual hardware ticks.
*/
dev->scale_nom = actual_frequency;
dev->scale_den = SERVO_FREQUENCY;
return 0;
}
void servo_set(const servo_t *dev, unsigned int pos)
{
unsigned int raw_value;
if (pos > dev->max) {
pos = dev->max;
}
else if (pos < dev->min) {
pos = dev->min;
}
/* rescale value to match PWM peripheral configuration */
raw_value = (pos * dev->scale_nom) / dev->scale_den;
DEBUG("servo_set: pos %d -> raw %d\n", pos, raw_value);
pwm_set(dev->device, dev->channel, raw_value);
}
|