forked from Traumflug/Teacup_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dda_maths.c
297 lines (249 loc) · 7.6 KB
/
dda_maths.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
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
/** \file
\brief Mathematic algorithms for the digital differential analyser (DDA).
*/
#include "dda_maths.h"
#include <stdlib.h>
#include <stdint.h>
/*!
Pre-calculated constant values for axis um <=> steps conversions.
These should be calculated at run-time once in dda_init() if the
STEPS_PER_M_* constants are ever replaced with run-time options.
*/
const axes_uint32_t PROGMEM axis_qn_P = {
(uint32_t)STEPS_PER_M_X / UM_PER_METER,
(uint32_t)STEPS_PER_M_Y / UM_PER_METER,
(uint32_t)STEPS_PER_M_Z / UM_PER_METER,
(uint32_t)STEPS_PER_M_E / UM_PER_METER
};
const axes_uint32_t PROGMEM axis_qr_P = {
(uint32_t)STEPS_PER_M_X % UM_PER_METER,
(uint32_t)STEPS_PER_M_Y % UM_PER_METER,
(uint32_t)STEPS_PER_M_Z % UM_PER_METER,
(uint32_t)STEPS_PER_M_E % UM_PER_METER
};
/*!
Integer multiply-divide algorithm. Returns the same as muldiv(multiplicand, multiplier, divisor), but also allowing to use precalculated quotients and remainders.
\param multiplicand
\param qn ( = multiplier / divisor )
\param rn ( = multiplier % divisor )
\param divisor
\return rounded result of multiplicand * multiplier / divisor
Calculate a * b / c, without overflowing and without using 64-bit integers.
Doing this the standard way, a * b could easily overflow, even if the correct
overall result fits into 32 bits. This algorithm avoids this intermediate
overflow and delivers valid results for all cases where each of the three
operators as well as the result fits into 32 bits.
Found on http://stackoverflow.com/questions/4144232/
how-to-calculate-a-times-b-divided-by-c-only-using-32-bit-integer-types-even-i
*/
const int32_t muldivQR(int32_t multiplicand, uint32_t qn, uint32_t rn,
uint32_t divisor) {
uint32_t quotient = 0;
uint32_t remainder = 0;
uint8_t negative_flag = 0;
if (multiplicand < 0) {
negative_flag = 1;
multiplicand = -multiplicand;
}
while(multiplicand) {
if (multiplicand & 1) {
quotient += qn;
remainder += rn;
if (remainder >= divisor) {
quotient++;
remainder -= divisor;
}
}
multiplicand >>= 1;
qn <<= 1;
rn <<= 1;
if (rn >= divisor) {
qn++;
rn -= divisor;
}
}
// rounding
if (remainder > divisor / 2)
quotient++;
// remainder is valid here, but not returned
return negative_flag ? -((int32_t)quotient) : (int32_t)quotient;
}
// courtesy of http://www.flipcode.com/archives/Fast_Approximate_Distance_Functions.shtml
/*! linear approximation 2d distance formula
\param dx distance in X plane
\param dy distance in Y plane
\return 3-part linear approximation of \f$\sqrt{\Delta x^2 + \Delta y^2}\f$
see http://www.flipcode.com/archives/Fast_Approximate_Distance_Functions.shtml
*/
uint32_t approx_distance(uint32_t dx, uint32_t dy) {
uint32_t min, max, approx;
// If either axis is zero, return the other one.
if (dx == 0 || dy == 0) return dx + dy;
if ( dx < dy ) {
min = dx;
max = dy;
} else {
min = dy;
max = dx;
}
approx = ( max * 1007 ) + ( min * 441 );
if ( max < ( min << 4 ))
approx -= ( max * 40 );
// add 512 for proper rounding
return (( approx + 512 ) >> 10 );
}
// courtesy of http://www.oroboro.com/rafael/docserv.php/index/programming/article/distance
/*! linear approximation 3d distance formula
\param dx distance in X plane
\param dy distance in Y plane
\param dz distance in Z plane
\return 3-part linear approximation of \f$\sqrt{\Delta x^2 + \Delta y^2 + \Delta z^2}\f$
see http://www.oroboro.com/rafael/docserv.php/index/programming/article/distance
*/
uint32_t approx_distance_3(uint32_t dx, uint32_t dy, uint32_t dz) {
uint32_t min, med, max, approx;
if ( dx < dy ) {
min = dy;
med = dx;
} else {
min = dx;
med = dy;
}
if ( dz < min ) {
max = med;
med = min;
min = dz;
} else if ( dz < med ) {
max = med;
med = dz;
} else {
max = dz;
}
approx = ( max * 860 ) + ( med * 851 ) + ( min * 520 );
if ( max < ( med << 1 )) approx -= ( max * 294 );
if ( max < ( min << 2 )) approx -= ( max * 113 );
if ( med < ( min << 2 )) approx -= ( med * 40 );
// add 512 for proper rounding
return (( approx + 512 ) >> 10 );
}
#if __FPU_PRESENT
uint_fast16_t int_f_sqrt(uint32_t a) {
// using FPUs floating square root to return an unsigned fast16 bit result
float result;
__ASM volatile ("vcvt.f32.u32 %[result], %[a];\n"
" vsqrt.f32 %[result], %[result];"
: [result]"=t" (result)
: [a]"t" (a));
return (uint_fast16_t)(result);
}
#endif /* __FPU_PRESENT */
/*!
integer square root algorithm
\param a find square root of this number
\return sqrt(a - 1) < returnvalue <= sqrt(a)
This is a binary search but it uses only the minimum required bits for
each step.
*/
uint16_t int_sqrt(uint32_t a) {
uint16_t b = a >> 16;
uint8_t c = b >> 8;
uint16_t x = 0;
uint8_t z = 0;
uint16_t i;
uint8_t j;
for (j = 0x8; j; j >>= 1) {
uint8_t y2;
z |= j;
y2 = z * z;
if (y2 > c)
z ^= j;
}
x = z << 4;
for(i = 0x8; i; i >>= 1) {
uint16_t y2;
x |= i;
y2 = x * x;
if (y2 > b)
x ^= i;
}
x <<= 8;
for(i = 0x80; i; i >>= 1) {
uint32_t y2;
x |= i;
y2 = (uint32_t)x * x;
if (y2 > a)
x ^= i;
}
return x;
}
/*!
integer inverse square root algorithm
\param a find the inverse of the square root of this number
\return 0x1000 / sqrt(a) - 1 < returnvalue <= 0x1000 / sqrt(a)
This is a binary search but it uses only the minimum required bits for each step.
*/
uint16_t int_inv_sqrt(uint16_t a) {
/// 16bits inverse (much faster than doing a full 32bits inverse)
/// the 0xFFFFU instead of 0x10000UL hack allows using 16bits and 8bits
/// variable for the first 8 steps without overflowing and it seems to
/// give better results for the ramping equation too :)
uint8_t z = 0, i;
uint16_t x, j;
uint32_t q = ((uint32_t)(0xFFFFU / a)) << 8;
for (i = 0x80; i; i >>= 1) {
uint16_t y;
z |= i;
y = (uint16_t)z * z;
if (y > (q >> 8))
z ^= i;
}
x = z << 4;
for (j = 0x8; j; j >>= 1) {
uint32_t y;
x |= j;
y = (uint32_t)x * x;
if (y > q)
x ^= j;
}
return x;
}
// this is an ultra-crude pseudo-logarithm routine, such that:
// 2 ^ msbloc(v) >= v
/*! crude logarithm algorithm
\param v value to find \f$log_2\f$ of
\return floor(log(v) / log(2))
*/
const uint8_t msbloc (uint32_t v) {
uint8_t i;
uint32_t c;
for (i = 31, c = 0x80000000; i; i--) {
if (v & c)
return i;
c >>= 1;
}
return 0;
}
/*!
Pre-calculated constant values for acceleration ramp calculations.
*/
static const axes_uint32_t PROGMEM acc_ramp_div_P = {
(uint32_t)((7200000.0f * ACCELERATION) / STEPS_PER_M_X),
(uint32_t)((7200000.0f * ACCELERATION) / STEPS_PER_M_Y),
(uint32_t)((7200000.0f * ACCELERATION) / STEPS_PER_M_Z),
(uint32_t)((7200000.0f * ACCELERATION) / STEPS_PER_M_E)
};
/*! Acceleration ramp length in steps.
* \param feedrate Target feedrate of the accelerateion.
* \param fast_axis Number of the fastest axis.
* \return Accelerating steps neccessary to achieve target feedrate.
*
* s = 1/2 * a * t^2, v = a * t ==> s = v^2 / (2 * a)
* 7200000 = 60 * 60 * 1000 * 2 (mm/min -> mm/s, steps/m -> steps/mm, factor 2)
*
* Note: this function has shown to be accurate between 10 and 10'000 mm/s2 and
* 2000 to 4096000 steps/m (and higher). The numbers are a few percent
* too high at very low acceleration. Test code see commit message.
*/
uint32_t acc_ramp_len(uint32_t feedrate, uint8_t fast_axis) {
return (feedrate * feedrate) / pgm_read_dword(&acc_ramp_div_P[fast_axis]);
}