2009-01-25 00:48:56 +01:00
|
|
|
/*
|
2011-12-09 02:47:48 +01:00
|
|
|
nuts_bolts.h - Header file for shared definitions, variables, and functions
|
2014-08-07 13:58:04 +02:00
|
|
|
Part of Grbl v0.9
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
Copyright (c) 2012-2015 Sungeun K. Jeon
|
2009-01-25 00:48:56 +01: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/>.
|
|
|
|
*/
|
2014-08-07 13:58:04 +02:00
|
|
|
/*
|
|
|
|
This file is based on work from Grbl v0.8, distributed under the
|
|
|
|
terms of the MIT-license. See COPYING for more details.
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
|
|
|
Copyright (c) 2011-2012 Sungeun K. Jeon
|
|
|
|
*/
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
#ifndef nuts_bolts_h
|
|
|
|
#define nuts_bolts_h
|
2012-02-25 17:06:42 +01:00
|
|
|
|
2011-02-18 23:04:12 +01:00
|
|
|
#define false 0
|
|
|
|
#define true 1
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// Axis array index values. Must start with 0 and be continuous.
|
2012-11-01 16:37:27 +01:00
|
|
|
#define N_AXIS 3 // Number of axes
|
2015-01-15 06:14:52 +01:00
|
|
|
#define X_AXIS 0 // Axis indexing value.
|
2009-01-25 00:48:56 +01:00
|
|
|
#define Y_AXIS 1
|
|
|
|
#define Z_AXIS 2
|
2014-08-01 16:29:35 +02:00
|
|
|
// #define A_AXIS 3
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// CoreXY motor assignments. DO NOT ALTER.
|
|
|
|
// NOTE: If the A and B motor axis bindings are changed, this effects the CoreXY equations.
|
|
|
|
#ifdef COREXY
|
|
|
|
#define A_MOTOR X_AXIS // Must be X_AXIS
|
|
|
|
#define B_MOTOR Y_AXIS // Must be Y_AXIS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Conversions
|
2012-11-02 02:48:55 +01:00
|
|
|
#define MM_PER_INCH (25.40)
|
|
|
|
#define INCH_PER_MM (0.0393701)
|
2012-12-08 23:00:58 +01:00
|
|
|
#define TICKS_PER_MICROSECOND (F_CPU/1000000)
|
|
|
|
|
2012-01-06 18:10:41 +01:00
|
|
|
// Useful macros
|
2011-02-11 23:53:58 +01:00
|
|
|
#define clear_vector(a) memset(a, 0, sizeof(a))
|
2012-11-02 02:48:55 +01:00
|
|
|
#define clear_vector_float(a) memset(a, 0.0, sizeof(float)*N_AXIS)
|
2014-05-26 00:05:28 +02:00
|
|
|
// #define clear_vector_long(a) memset(a, 0.0, sizeof(long)*N_AXIS)
|
2011-02-11 23:53:58 +01:00
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
2011-09-03 23:31:48 +02:00
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
2011-02-11 23:53:58 +01:00
|
|
|
|
2012-01-06 18:10:41 +01:00
|
|
|
// Bit field and masking macros
|
|
|
|
#define bit(n) (1 << n)
|
2014-07-07 03:05:12 +02:00
|
|
|
#define bit_true_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) |= (mask); SREG = sreg; }
|
|
|
|
#define bit_false_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) &= ~(mask); SREG = sreg; }
|
|
|
|
#define bit_toggle_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) ^= (mask); SREG = sreg; }
|
|
|
|
#define bit_true(x,mask) (x) |= (mask)
|
|
|
|
#define bit_false(x,mask) (x) &= ~(mask)
|
2012-01-06 18:10:41 +01:00
|
|
|
#define bit_istrue(x,mask) ((x & mask) != 0)
|
|
|
|
#define bit_isfalse(x,mask) ((x & mask) == 0)
|
|
|
|
|
2011-02-18 23:08:06 +01:00
|
|
|
// Read a floating point value from a string. Line points to the input buffer, char_counter
|
2012-10-08 23:57:58 +02:00
|
|
|
// is the indexer pointing to the current character of the line, while float_ptr is
|
2011-02-18 23:08:06 +01:00
|
|
|
// a pointer to the result variable. Returns true when it succeeds
|
2014-05-26 00:05:28 +02:00
|
|
|
uint8_t read_float(char *line, uint8_t *char_counter, float *float_ptr);
|
2011-02-18 22:59:16 +01:00
|
|
|
|
2012-01-16 02:25:12 +01:00
|
|
|
// Delays variable-defined milliseconds. Compiler compatibility fix for _delay_ms().
|
|
|
|
void delay_ms(uint16_t ms);
|
|
|
|
|
2012-02-11 19:59:35 +01:00
|
|
|
// Delays variable-defined microseconds. Compiler compatibility fix for _delay_us().
|
2012-10-12 16:27:14 +02:00
|
|
|
void delay_us(uint32_t us);
|
2012-02-11 19:59:35 +01:00
|
|
|
|
Settings refactoring. Bug fixes. Misc new features.
This is likely the last major change to the v0.9 code base before push
to master. Only two minor things remain on the agenda (CoreXY support,
force clear EEPROM, and an extremely low federate bug).
- NEW! Grbl is now compile-able and may be flashed directly through the
Arduino IDE. Only minor changes were required for this compatibility.
See the Wiki to learn how to do it.
- New status reporting mask to turn on and off what Grbl sends back.
This includes machine coordinates, work coordinates, serial RX buffer
usage, and planner buffer usage. Expandable to more information on user
request, but that’s it for now.
- Settings have been completely renumbered to allow for future new
settings to be installed without having to constantly reshuffle and
renumber all of the settings every time.
- All settings masks have been standardized to mean bit 0 = X, bit 1 =
Y, and bit 2 = Z, to reduce confusion on how they work. The invert
masks used by the internal Grbl system were updated to accommodate this
change as well.
- New invert probe pin setting, which does what it sounds like.
- Fixed a probing cycle bug, where it would freeze intermittently, and
removed some redundant code.
- Homing may now be set to the origin wherever the limit switches are.
Traditionally machine coordinates should always be in negative space,
but when limit switches on are on the opposite side, the machine
coordinate would be set to -max_travel for the axis. Now you can always
make it [0,0,0] via a compile-time option in config.h. (Soft limits
routine was updated to account for this as well.)
- Probe coordinate message immediately after a probing cycle may now
be turned off via a compile-time option in config.h. By default the
probing location is always reported.
- Reduced the N_ARC_CORRECTION default value to reflect the changes in
how circles are generated by an arc tolerance, rather than a fixed arc
segment setting.
- Increased the incoming line buffer limit from 70 to 80 characters.
Had some extra memory space to invest into this.
- Fixed a bug where tool number T was not being tracked and reported
correctly.
- Added a print free memory function for debugging purposes. Not used
otherwise.
- Realtime rate report should now work during feed holds, but it hasn’t
been tested yet.
- Updated the streaming scripts with MIT-license and added the simple
streaming to the main stream.py script to allow for settings to be sent.
- Some minor code refactoring to improve flash efficiency. Reduced the
flash by several hundred KB, which was re-invested in some of these new
features.
2014-07-26 23:01:34 +02:00
|
|
|
// Computes hypotenuse, avoiding avr-gcc's bloated version and the extra error checking.
|
2014-05-26 00:05:28 +02:00
|
|
|
float hypot_f(float x, float y);
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
#endif
|