forked from tdamdouni/Raspberry-Pi-DIY-Projects
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsoft_pwm.c
214 lines (181 loc) · 4.79 KB
/
soft_pwm.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
Copyright (c) 2013 Ben Croston
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include "c_gpio.h"
#include "soft_pwm.h"
pthread_t threads;
struct pwm
{
unsigned int gpio;
float freq;
float dutycycle;
float basetime;
float slicetime;
struct timespec req_on, req_off;
int running;
struct pwm *next;
};
struct pwm *pwm_list = NULL;
void remove_pwm(unsigned int gpio)
{
struct pwm *p = pwm_list;
struct pwm *prev = NULL;
struct pwm *temp;
while (p != NULL)
{
if (p->gpio == gpio)
{
if (prev == NULL)
pwm_list = p->next;
else
prev->next = p->next;
temp = p;
p = p->next;
free(temp);
} else {
prev = p;
p = p->next;
}
}
}
void calculate_times(struct pwm *p)
{
long long usec;
usec = (long long)(p->dutycycle * p->slicetime * 1000.0);
p->req_on.tv_sec = (int)(usec / 1000000LL);
usec -= (long long)p->req_on.tv_sec * 1000000LL;
p->req_on.tv_nsec = (long)usec * 1000L;
usec = (long long)((100.0-p->dutycycle) * p->slicetime * 1000.0);
p->req_off.tv_sec = (int)(usec / 1000000LL);
usec -= (long long)p->req_off.tv_sec * 1000000LL;
p->req_off.tv_nsec = (long)usec * 1000L;
}
void full_sleep(struct timespec *req)
{
struct timespec rem = {0};
if (nanosleep(req,&rem) == -1)
full_sleep(&rem);
}
void *pwm_thread(void *threadarg)
{
struct pwm *p = (struct pwm *)threadarg;
while (p->running)
{
if (p->dutycycle > 0.0)
{
output_gpio(p->gpio, 1);
full_sleep(&p->req_on);
}
if (p->dutycycle < 100.0)
{
output_gpio(p->gpio, 0);
full_sleep(&p->req_off);
}
}
// clean up
output_gpio(p->gpio, 0);
remove_pwm(p->gpio);
pthread_exit(NULL);
}
struct pwm *add_new_pwm(unsigned int gpio)
{
struct pwm *new_pwm;
new_pwm = malloc(sizeof(struct pwm));
new_pwm->gpio = gpio;
new_pwm->running = 0;
new_pwm->next = NULL;
// default to 1 kHz frequency, dutycycle 0.0
new_pwm->freq = 1000.0;
new_pwm->dutycycle = 0.0;
new_pwm->basetime = 1.0; // 1 ms
new_pwm->slicetime = 0.01; // 0.01 ms
calculate_times(new_pwm);
return new_pwm;
}
struct pwm *find_pwm(unsigned int gpio)
{
struct pwm *p = pwm_list;
if (pwm_list == NULL)
{
pwm_list = add_new_pwm(gpio);
return pwm_list;
}
while (p != NULL)
{
if (p->gpio == gpio)
return p;
if (p->next == NULL)
{
p->next = add_new_pwm(gpio);
return p->next;
}
p = p->next;
}
return NULL;
}
void pwm_set_duty_cycle(unsigned int gpio, float dutycycle)
{
struct pwm *p;
if (dutycycle < 0.0 || dutycycle > 100.0)
{
// btc fixme - error
return;
}
if ((p = find_pwm(gpio)) != NULL)
{
p->dutycycle = dutycycle;
calculate_times(p);
}
}
void pwm_set_frequency(unsigned int gpio, float freq)
{
struct pwm *p;
if (freq <= 0.0) // to avoid divide by zero
{
// btc fixme - error
return;
}
if ((p = find_pwm(gpio)) != NULL)
{
p->basetime = 1000.0 / freq; // calculated in ms
p->slicetime = p->basetime / 100.0;
calculate_times(p);
}
}
void pwm_start(unsigned int gpio)
{
struct pwm *p;
if (((p = find_pwm(gpio)) == NULL) || p->running)
return;
p->running = 1;
if (pthread_create(&threads, NULL, pwm_thread, (void *)p) != 0)
{
// btc fixme - error
p->running = 0;
return;
}
}
void pwm_stop(unsigned int gpio)
{
struct pwm *p;
if ((p = find_pwm(gpio)) != NULL)
p->running = 0;
}