2009-01-24 23:48:56 +00:00
|
|
|
/*
|
2011-12-09 01:47:48 +00:00
|
|
|
nuts_bolts.h - Header file for shared definitions, variables, and functions
|
2009-01-24 23:48:56 +00:00
|
|
|
Part of Grbl
|
|
|
|
|
2013-12-31 05:02:05 +00:00
|
|
|
Copyright (c) 2011-2014 Sungeun K. Jeon
|
2011-01-14 15:45:18 +00:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2009-01-24 23:48:56 +00:00
|
|
|
|
|
|
|
Grbl is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Grbl is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nuts_bolts_h
|
|
|
|
#define nuts_bolts_h
|
2012-02-25 16:06:42 +00:00
|
|
|
|
2011-02-18 22:04:12 +00:00
|
|
|
#define false 0
|
|
|
|
#define true 1
|
2009-01-24 23:48:56 +00:00
|
|
|
|
2012-11-01 15:37:27 +00:00
|
|
|
#define N_AXIS 3 // Number of axes
|
2013-10-30 01:10:39 +00:00
|
|
|
#define X_AXIS 0 // Axis indexing value. Must start with 0 and be continuous.
|
2009-01-24 23:48:56 +00:00
|
|
|
#define Y_AXIS 1
|
|
|
|
#define Z_AXIS 2
|
|
|
|
|
2012-11-02 01:48:55 +00:00
|
|
|
#define MM_PER_INCH (25.40)
|
|
|
|
#define INCH_PER_MM (0.0393701)
|
2012-01-06 17:10:41 +00:00
|
|
|
|
2012-12-08 22:00:58 +00:00
|
|
|
#define TICKS_PER_MICROSECOND (F_CPU/1000000)
|
|
|
|
|
2012-01-06 17:10:41 +00:00
|
|
|
// Useful macros
|
2011-02-11 22:53:58 +00:00
|
|
|
#define clear_vector(a) memset(a, 0, sizeof(a))
|
2012-11-02 01:48:55 +00:00
|
|
|
#define clear_vector_float(a) memset(a, 0.0, sizeof(float)*N_AXIS)
|
2014-05-25 22:05:28 +00:00
|
|
|
// #define clear_vector_long(a) memset(a, 0.0, sizeof(long)*N_AXIS)
|
2011-02-11 22:53:58 +00:00
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
2011-09-03 21:31:48 +00:00
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
2011-02-11 22:53:58 +00:00
|
|
|
|
2012-01-06 17:10:41 +00:00
|
|
|
// Bit field and masking macros
|
|
|
|
#define bit(n) (1 << n)
|
2014-06-26 22:06:26 +00:00
|
|
|
#define bit_true(x,mask) {uint8_t sreg = SREG; cli(); (x) |= (mask); SREG = sreg; }
|
|
|
|
#define bit_false(x,mask) {uint8_t sreg = SREG; cli(); (x) &= ~(mask); SREG = sreg; }
|
|
|
|
#define bit_toggle(x,mask) {uint8_t sreg = SREG; cli(); (x) ^= (mask); SREG = sreg; }
|
2012-01-06 17:10:41 +00:00
|
|
|
#define bit_istrue(x,mask) ((x & mask) != 0)
|
|
|
|
#define bit_isfalse(x,mask) ((x & mask) == 0)
|
|
|
|
|
2011-02-18 22:08:06 +00:00
|
|
|
// Read a floating point value from a string. Line points to the input buffer, char_counter
|
2012-10-08 21:57:58 +00:00
|
|
|
// is the indexer pointing to the current character of the line, while float_ptr is
|
2011-02-18 22:08:06 +00:00
|
|
|
// a pointer to the result variable. Returns true when it succeeds
|
2014-05-25 22:05:28 +00:00
|
|
|
uint8_t read_float(char *line, uint8_t *char_counter, float *float_ptr);
|
2011-02-18 21:59:16 +00:00
|
|
|
|
2012-01-16 01:25:12 +00:00
|
|
|
// Delays variable-defined milliseconds. Compiler compatibility fix for _delay_ms().
|
|
|
|
void delay_ms(uint16_t ms);
|
|
|
|
|
2012-02-11 18:59:35 +00:00
|
|
|
// Delays variable-defined microseconds. Compiler compatibility fix for _delay_us().
|
2012-10-12 14:27:14 +00:00
|
|
|
void delay_us(uint32_t us);
|
2012-02-11 18:59:35 +00:00
|
|
|
|
2013-10-30 01:10:39 +00:00
|
|
|
uint8_t get_direction_mask(uint8_t i);
|
2012-11-04 15:44:54 +00:00
|
|
|
|
2014-05-25 22:05:28 +00:00
|
|
|
float hypot_f(float x, float y);
|
|
|
|
|
2009-01-24 23:48:56 +00:00
|
|
|
#endif
|