forked from bhagman/SoftPWM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoftPWM.cpp
309 lines (260 loc) · 8.2 KB
/
SoftPWM.cpp
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
|| @author Brett Hagman <[email protected]>
|| @contribution Paul Stoffregen (paul at pjrc dot com)
|| @url http://wiring.org.co/
|| @url http://roguerobotics.com/
||
|| @description
|| | A Software PWM Library
|| |
|| | Written by Brett Hagman
|| | http://www.roguerobotics.com/
|| |
|| | A Wiring (and Arduino) Library, for Atmel AVR8 bit series microcontrollers,
|| | to produce PWM signals on any arbitrary pin.
|| |
|| | It was originally designed for controlling the brightness of LEDs, but
|| | could be adapted to control servos and other low frequency PWM controlled
|| | devices as well.
|| |
|| | It uses a single hardware timer (Timer 2) on the Atmel microcontroller to
|| | generate up to 20 PWM channels (your mileage may vary).
|| |
|| #
||
|| @license Please see the accompanying LICENSE.txt file for this project.
||
|| @notes
|| | Minor modification by Paul Stoffregen to support different timers.
|| |
|| #
||
|| @name Software PWM Library
|| @type Library
|| @target Atmel AVR 8 Bit
||
|| @version 1.0.1
||
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#include "SoftPWM.h"
#include "SoftPWM_timer.h"
#if defined(WIRING)
#include <Wiring.h>
#elif ARDUINO >= 100
#include <Arduino.h>
#else
#include <WProgram.h>
#endif
#if F_CPU
#define SOFTPWM_FREQ 60UL
#define SOFTPWM_OCR (F_CPU/(8UL*256UL*SOFTPWM_FREQ))
#else
// 130 == 60 Hz (on 16 MHz part)
#define SOFTPWM_OCR 130
#endif
volatile uint8_t _isr_softcount = 0xff;
uint8_t _softpwm_defaultPolarity = SOFTPWM_NORMAL;
typedef struct
{
// hardware I/O port and pin for this channel
int8_t pin;
uint8_t polarity;
volatile uint8_t *outport;
uint8_t pinmask;
uint8_t pwmvalue;
uint8_t checkval;
uint8_t fadeuprate;
uint8_t fadedownrate;
} softPWMChannel;
softPWMChannel _softpwm_channels[SOFTPWM_MAXCHANNELS];
// Here is the meat and gravy
#ifdef WIRING
void SoftPWM_Timer_Interrupt(void)
#else
ISR(SOFTPWM_TIMER_INTERRUPT)
#endif
{
uint8_t i;
int16_t newvalue;
int16_t direction;
if(++_isr_softcount == 0)
{
// set all channels high - let's start again
// and accept new checkvals
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if (_softpwm_channels[i].fadeuprate > 0 || _softpwm_channels[i].fadedownrate > 0)
{
// we want to fade to the new value
direction = _softpwm_channels[i].pwmvalue - _softpwm_channels[i].checkval;
// we will default to jumping to the new value
newvalue = _softpwm_channels[i].pwmvalue;
if (direction > 0 && _softpwm_channels[i].fadeuprate > 0)
{
newvalue = _softpwm_channels[i].checkval + _softpwm_channels[i].fadeuprate;
if (newvalue > _softpwm_channels[i].pwmvalue)
newvalue = _softpwm_channels[i].pwmvalue;
}
else if (direction < 0 && _softpwm_channels[i].fadedownrate > 0)
{
newvalue = _softpwm_channels[i].checkval - _softpwm_channels[i].fadedownrate;
if (newvalue < _softpwm_channels[i].pwmvalue)
newvalue = _softpwm_channels[i].pwmvalue;
}
_softpwm_channels[i].checkval = newvalue;
}
else // just set the channel to the new value
_softpwm_channels[i].checkval = _softpwm_channels[i].pwmvalue;
// now set the pin high (if not 0)
if (_softpwm_channels[i].checkval > 0) // don't set if checkval == 0
{
if (_softpwm_channels[i].polarity == SOFTPWM_NORMAL)
*_softpwm_channels[i].outport |= _softpwm_channels[i].pinmask;
else
*_softpwm_channels[i].outport &= ~(_softpwm_channels[i].pinmask);
}
}
}
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if (_softpwm_channels[i].pin >= 0) // if it's a valid pin
{
if (_softpwm_channels[i].checkval == _isr_softcount) // if we have hit the width
{
// turn off the channel
if (_softpwm_channels[i].polarity == SOFTPWM_NORMAL)
*_softpwm_channels[i].outport &= ~(_softpwm_channels[i].pinmask);
else
*_softpwm_channels[i].outport |= _softpwm_channels[i].pinmask;
}
}
}
}
void SoftPWMBegin(uint8_t defaultPolarity)
{
// We can tweak the number of PWM period by changing the prescalar
// and the OCR - we'll default to ck/8 (CS21 set) and OCR=128.
// This gives 1024 cycles between interrupts. And the ISR consumes ~200 cycles, so
// we are looking at about 20 - 30% of CPU time spent in the ISR.
// At these settings on a 16 MHz part, we will get a PWM period of
// approximately 60Hz (~16ms).
uint8_t i;
#ifdef WIRING
Timer2.setMode(0b010); // CTC
Timer2.setClockSource(CLOCK_PRESCALE_8);
Timer2.setOCR(CHANNEL_A, SOFTPWM_OCR);
Timer2.attachInterrupt(INTERRUPT_COMPARE_MATCH_A, SoftPWM_Timer_Interrupt);
#else
SOFTPWM_TIMER_INIT(SOFTPWM_OCR);
#endif
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
_softpwm_channels[i].pin = -1;
_softpwm_channels[i].polarity = SOFTPWM_NORMAL;
_softpwm_channels[i].outport = 0;
_softpwm_channels[i].fadeuprate = 0;
_softpwm_channels[i].fadedownrate = 0;
}
_softpwm_defaultPolarity = defaultPolarity;
}
void SoftPWMSetPolarity(int8_t pin, uint8_t polarity)
{
uint8_t i;
if (polarity != SOFTPWM_NORMAL)
polarity = SOFTPWM_INVERTED;
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if ((pin < 0 && _softpwm_channels[i].pin >= 0) || // ALL pins
(pin >= 0 && _softpwm_channels[i].pin == pin)) // individual pin
{
_softpwm_channels[i].polarity = polarity;
}
}
}
void SoftPWMSetPercent(int8_t pin, uint8_t percent, uint8_t hardset)
{
SoftPWMSet(pin, ((uint16_t)percent * 255) / 100, hardset);
}
void SoftPWMSet(int8_t pin, uint8_t value, uint8_t hardset)
{
int8_t firstfree = -1; // first free index
uint8_t i;
if (hardset)
{
SOFTPWM_TIMER_SET(0);
_isr_softcount = 0xff;
}
// If the pin isn't already set, add it
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if ((pin < 0 && _softpwm_channels[i].pin >= 0) || // ALL pins
(pin >= 0 && _softpwm_channels[i].pin == pin)) // individual pin
{
// set the pin (and exit, if individual pin)
_softpwm_channels[i].pwmvalue = value;
if (pin >= 0) // we've set the individual pin
return;
}
// get the first free pin if available
if (firstfree < 0 && _softpwm_channels[i].pin < 0)
firstfree = i;
}
if (pin >= 0 && firstfree >= 0)
{
// we have a free pin we can use
_softpwm_channels[firstfree].pin = pin;
_softpwm_channels[firstfree].polarity = _softpwm_defaultPolarity;
_softpwm_channels[firstfree].outport = portOutputRegister(digitalPinToPort(pin));
_softpwm_channels[firstfree].pinmask = digitalPinToBitMask(pin);
_softpwm_channels[firstfree].pwmvalue = value;
// _softpwm_channels[firstfree].checkval = 0;
// now prepare the pin for output
// turn it off to start (no glitch)
if (_softpwm_defaultPolarity == SOFTPWM_NORMAL)
digitalWrite(pin, LOW);
else
digitalWrite(pin, HIGH);
pinMode(pin, OUTPUT);
}
}
void SoftPWMEnd(int8_t pin)
{
uint8_t i;
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if ((pin < 0 && _softpwm_channels[i].pin >= 0) || // ALL pins
(pin >= 0 && _softpwm_channels[i].pin == pin)) // individual pin
{
// now disable the pin (put it into INPUT mode)
digitalWrite(_softpwm_channels[i].pin, 1);
pinMode(_softpwm_channels[i].pin, INPUT);
// remove the pin
_softpwm_channels[i].pin = -1;
}
}
}
void SoftPWMSetFadeTime(int8_t pin, uint16_t fadeUpTime, uint16_t fadeDownTime)
{
int16_t fadeAmount;
uint8_t i;
for (i = 0; i < SOFTPWM_MAXCHANNELS; i++)
{
if ((pin < 0 && _softpwm_channels[i].pin >= 0) || // ALL pins
(pin >= 0 && _softpwm_channels[i].pin == pin)) // individual pin
{
fadeAmount = 0;
if (fadeUpTime > 0)
fadeAmount = 255UL * (SOFTPWM_OCR * 256UL / (F_CPU / 8000UL)) / fadeUpTime;
_softpwm_channels[i].fadeuprate = fadeAmount;
fadeAmount = 0;
if (fadeDownTime > 0)
fadeAmount = 255UL * (SOFTPWM_OCR * 256UL / (F_CPU / 8000UL)) / fadeDownTime;
_softpwm_channels[i].fadedownrate = fadeAmount;
if (pin >= 0) // we've set individual pin
break;
}
}
}