grblHAL core  20250104
nuts_bolts.h
Go to the documentation of this file.
1 /*
2  nuts_bolts.h - Header file for shared definitions, variables, and functions
3 
4  Part of grblHAL
5 
6  Copyright (c) 2017-2024 Terje Io
7  Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
8  Copyright (c) 2009-2011 Simen Svale Skogsrud
9 
10  grblHAL is free software: you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  grblHAL is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
22 */
23 
24 #ifndef _NUTS_BOLTS_H_
25 #define _NUTS_BOLTS_H_
26 
27 #include "grbl.h"
28 #include "errors.h"
29 
30 #ifndef true
31 #define false 0
32 #define true 1
33 #endif
34 
35 #define Off 0
36 #define On 1
37 
38 #define SOME_LARGE_VALUE 1.0E+38f
39 #ifndef M_PI
40 #define M_PI 3.14159265358979323846f
41 #endif
42 
43 #define TOLERANCE_EQUAL 0.0001f
44 
45 #define RADDEG 0.01745329251994329577f // Radians per degree
46 #define DEGRAD 57.29577951308232087680f // Degrees per radians
47 #define SQRT3 1.73205080756887729353f
48 #define SIN120 0.86602540378443864676f
49 #define COS120 -0.5f
50 #define TAN60 1.73205080756887729353f
51 #define SIN30 0.5f
52 #define TAN30 0.57735026918962576451f
53 #define TAN30_2 0.28867513459481288225f
54 
55 #define ABORTED (sys.abort || sys.cancel)
56 
57 // Convert character to uppercase
58 #define CAPS(c) ((c >= 'a' && c <= 'z') ? (c & 0x5F) : c)
59 #define LCAPS(c) ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c)
60 
61 #if !(defined(STM32F103xB) || defined(STM32F303xC))
62 #ifndef UNUSED
63 #define UNUSED(x) (void)(x)
64 #endif
65 #endif
66 
67 // Axis array index values. Must start with 0 and be continuous.
68 #define X_AXIS 0 // Axis indexing value.
69 #define Y_AXIS 1
70 #define Z_AXIS 2
71 #define X_AXIS_BIT bit(X_AXIS)
72 #define Y_AXIS_BIT bit(Y_AXIS)
73 #define Z_AXIS_BIT bit(Z_AXIS)
74 #if N_AXIS > 3
75 #define A_AXIS 3
76 #define A_AXIS_BIT bit(A_AXIS)
77 #endif
78 #if N_AXIS > 4
79 #define B_AXIS 4
80 #define B_AXIS_BIT bit(B_AXIS)
81 #endif
82 #if N_AXIS > 5
83 #define C_AXIS 5
84 #define C_AXIS_BIT bit(C_AXIS)
85 #endif
86 #if N_AXIS > 6
87 #define U_AXIS 6
88 #define U_AXIS_BIT bit(U_AXIS)
89 #endif
90 #if N_AXIS == 8
91 #define V_AXIS 7
92 #define V_AXIS_BIT bit(V_AXIS)
93 #endif
94 
95 #if N_AXIS == 3
96 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT)
97 #elif N_AXIS == 4
98 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT|A_AXIS_BIT)
99 #elif N_AXIS == 5
100 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT|A_AXIS_BIT|B_AXIS_BIT)
101 #elif N_AXIS == 6
102 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT|A_AXIS_BIT|B_AXIS_BIT|C_AXIS_BIT)
103 #elif N_AXIS == 7
104 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT|A_AXIS_BIT|B_AXIS_BIT|C_AXIS_BIT|U_AXIS_BIT)
105 #else
106 #define AXES_BITMASK (X_AXIS_BIT|Y_AXIS_BIT|Z_AXIS_BIT|A_AXIS_BIT|B_AXIS_BIT|C_AXIS_BIT|U_AXIS_BIT|V_AXIS_BIT)
107 #endif
108 
109 #ifdef V_AXIS
110 #define N_ABC_AXIS 5
111 #elif defined(U_AXIS)
112 #define N_ABC_AXIS 4
113 #elif defined(C_AXIS)
114 #define N_ABC_AXIS 3
115 #elif defined(B_AXIS)
116 #define N_ABC_AXIS 2
117 #elif defined(A_AXIS)
118 #define N_ABC_AXIS 1
119 #else
120 #define N_ABC_AXIS 0
121 #endif
122 
123 extern char const *const axis_letter[];
124 
125 typedef union {
126  uint8_t mask;
127  uint8_t bits;
128  uint8_t value;
129  struct {
130  uint8_t x :1,
131  y :1,
132  z :1,
133  a :1,
134  b :1,
135  c :1,
136  u :1,
137  v :1;
138  };
140 
141 typedef union {
142  float values[2];
143  struct {
144  float x;
145  float y;
146  };
147 } point_2d_t;
148 
149 #pragma pack(push, 1)
150 
152 typedef struct {
158 
160 typedef struct {
164 
165 #pragma pack(pop)
166 
167 typedef enum {
171 
172 // Conversions
173 #define MM_PER_INCH (25.40f)
174 #define INCH_PER_MM (0.0393701f)
175 
176 #define MAX_INT_DIGITS 9 // Maximum number of digits in int32 (and float)
177 #define STRLEN_COORDVALUE (MAX_INT_DIGITS + N_DECIMAL_COORDVALUE_INCH + 1) // 8.4 format - excluding terminating null
178 
179 // Useful macros
180 #ifndef max
181 #define max(a,b) (((a) > (b)) ? (a) : (b))
182 #endif
183 #ifndef min
184 #define min(a,b) (((a) < (b)) ? (a) : (b))
185 #endif
186 #ifndef constrain
187 #define constrain(val, min, max) ((val) < (min) ? (min) : ((val) > (max) ? (max) : (val)))
188 #endif
189 #define clear_vector(a) memset(a, 0, sizeof(a))
190 #define isequal_position_vector(a, b) !memcmp(a, b, sizeof(coord_data_t))
191 #define is0_position_vector(a) !memcmp(a, &((coord_data_t){0}), sizeof(coord_data_t))
192 
193 // Bit field and masking macros
194 #ifndef bit
195 #define bit(n) (1UL << (n))
196 #endif
197 #define bit_true(x, mask) (x) |= (mask)
198 #define bit_false(x, mask) (x) &= ~(mask)
199 #define BIT_SET(x, bit, v) { if (v) { x |= (bit); } else { x &= ~(bit); } }
200 
201 #define bit_istrue(x, mask) ((x & (mask)) != 0)
202 #define bit_isfalse(x, mask) ((x & (mask)) == 0)
203 
204 // Converts an uint32 variable to string.
205 char *uitoa (uint32_t n);
206 
207 // Converts a float variable to string with the specified number of decimal places.
208 char *ftoa (float n, uint8_t decimal_places);
209 
210 // Trim trailing zeros and possibly decimal point
211 char *trim_float (char *s);
212 
213 // Returns true if float value is a whole number (integer)
214 bool isintf (float value);
215 
216 status_code_t read_uint (char *line, uint_fast8_t *char_counter, uint32_t *uint_ptr);
217 
218 // Read a floating point value from a string. Line points to the input buffer, char_counter
219 // is the indexer pointing to the current character of the line, while float_ptr is
220 // a pointer to the result variable. Returns true when it succeeds
221 bool read_float (char *line, uint_fast8_t *char_counter, float *float_ptr);
222 
223 // Non-blocking delay function used for general operation and suspend features.
224 bool delay_sec (float seconds, delaymode_t mode);
225 
226 float convert_delta_vector_to_unit_vector(float *vector);
227 
228 // parse ISO8601 datetime
229 struct tm *get_datetime (const char *s);
230 
231 char *strcaps (char *s);
232 
233 uint_fast8_t bit_count (uint32_t bits);
234 
235 void dummy_handler (void);
236 
237 #endif
float convert_delta_vector_to_unit_vector(float *vector)
Definition: nuts_bolts.c:332
struct tm * get_datetime(const char *s)
Definition: nuts_bolts.c:354
char * strcaps(char *s)
Definition: nuts_bolts.c:415
bool isintf(float value)
Definition: nuts_bolts.c:307
bool read_float(char *line, uint_fast8_t *char_counter, float *float_ptr)
Definition: nuts_bolts.c:242
char const *const axis_letter[]
Definition: nuts_bolts.c:62
status_code_t read_uint(char *line, uint_fast8_t *char_counter, uint32_t *uint_ptr)
Definition: nuts_bolts.c:184
char * ftoa(float n, uint8_t decimal_places)
Definition: nuts_bolts.c:115
uint_fast8_t bit_count(uint32_t bits)
Definition: nuts_bolts.c:431
char * uitoa(uint32_t n)
Definition: nuts_bolts.c:96
delaymode_t
Definition: nuts_bolts.h:167
@ DelayMode_SysSuspend
Definition: nuts_bolts.h:169
@ DelayMode_Dwell
Definition: nuts_bolts.h:168
bool delay_sec(float seconds, delaymode_t mode)
Definition: nuts_bolts.c:313
char * trim_float(char *s)
Definition: nuts_bolts.c:170
void dummy_handler(void)
Definition: nuts_bolts.c:443
Home switches struct, consists of two packed axes_signals_t structs.
Definition: nuts_bolts.h:160
axes_signals_t a
Primary home switches status, optional. Limit signals are used for homing if not available.
Definition: nuts_bolts.h:161
axes_signals_t b
Secondary home switch(es) status, required for auto squaring enabled axes if primary switches are ava...
Definition: nuts_bolts.h:162
Limit switches struct, consists of four packed axes_signals_t structs in 32 bits.
Definition: nuts_bolts.h:152
axes_signals_t min
Min limit switches status, required.
Definition: nuts_bolts.h:153
axes_signals_t min2
Secondary min limit switch(es) status, required for auto squaring enabled axes.
Definition: nuts_bolts.h:155
axes_signals_t max2
Secondary max limit switches status, optional (of no practical use?).
Definition: nuts_bolts.h:156
axes_signals_t max
Max limit switches status, optional.
Definition: nuts_bolts.h:154
Definition: vfs.h:47
Definition: nuts_bolts.h:125
uint8_t u
Definition: nuts_bolts.h:136
uint8_t x
Definition: nuts_bolts.h:130
uint8_t y
Definition: nuts_bolts.h:131
uint8_t c
Definition: nuts_bolts.h:135
uint8_t b
Definition: nuts_bolts.h:134
uint8_t v
Definition: nuts_bolts.h:137
uint8_t bits
Definition: nuts_bolts.h:127
uint8_t value
Definition: nuts_bolts.h:128
uint8_t mask
Definition: nuts_bolts.h:126
uint8_t z
Definition: nuts_bolts.h:132
uint8_t a
Definition: nuts_bolts.h:133
Definition: nuts_bolts.h:141
float y
Definition: nuts_bolts.h:145
float x
Definition: nuts_bolts.h:144